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
Apologies for the breakage, @alexisgayte, and thanks for letting us know. I'm not sure if you'd like us to investigate further. If you would, please open a new issue with a minimal sample that works without this change and fails with it.
ConfigDataLocationResolver
implementations are loaded using the resource loader'sClassLoader
spring-boot/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigDataEnvironment.java
Lines 157 to 161 in 5e57f1b
One of these implementations,
StandardConfigDataLocationResolver
, then uses its class's own class loader to loadPropertySourceLoader
implementations:spring-boot/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/config/StandardConfigDataLocationResolver.java
Lines 86 to 93 in 5e57f1b
For consistency, it should use the
ResourceLoader
that's passed into its constructor instead.The text was updated successfully, but these errors were encountered: