More spring exceptions

This commit is contained in:
Nikolay Martynov 2020-03-05 08:39:26 -05:00
parent 930c1fb4e9
commit a261fb4760
1 changed files with 6 additions and 2 deletions

View File

@ -96,7 +96,10 @@ public class AdditionalLibraryIgnoresMatcher<T extends TypeDescription>
if (name.startsWith("org.springframework.boot.")) { if (name.startsWith("org.springframework.boot.")) {
// More runnables to deal with // More runnables to deal with
if (name.startsWith("org.springframework.boot.autoconfigure.BackgroundPreinitializer$") if (name.startsWith("org.springframework.boot.autoconfigure.BackgroundPreinitializer$")
|| name.startsWith("org.springframework.boot.web.embedded.netty.NettyWebServer$")) { || name.startsWith("org.springframework.boot.autoconfigure.condition.OnClassCondition$")
|| name.startsWith("org.springframework.boot.web.embedded.netty.NettyWebServer$")
|| name.startsWith(
"org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer$")) {
return false; return false;
} }
return true; return true;
@ -144,7 +147,8 @@ public class AdditionalLibraryIgnoresMatcher<T extends TypeDescription>
if (name.startsWith("org.springframework.web.")) { if (name.startsWith("org.springframework.web.")) {
if (name.startsWith("org.springframework.web.servlet.") if (name.startsWith("org.springframework.web.servlet.")
|| name.startsWith("org.springframework.web.reactive.")) { || name.startsWith("org.springframework.web.reactive.")
|| name.startsWith("org.springframework.web.context.request.async.")) {
return false; return false;
} }
return true; return true;