You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When execute a Spring Boot Fat Jar,it's bootstrapped in AppClassLoader, actually switch to LaunchedURLClassLoader during refreshing application context.
As the parent of LaunchedURLClassLoader is AppClassLoader, it will lead resource in /META-INF/* of executable-fat-jar to be loaded repeatedly when invoke LaunchedURLClassLoader.getResources:
When execute a Spring Boot Fat Jar,it's bootstrapped in
AppClassLoader
, actually switch toLaunchedURLClassLoader
during refreshing application context.As the parent of
LaunchedURLClassLoader
isAppClassLoader
, it will lead resource in/META-INF/*
of executable-fat-jar to be loaded repeatedly when invokeLaunchedURLClassLoader.getResources
:it leads our program failed to run!would you fix it?
The text was updated successfully, but these errors were encountered: