Skip to content

Commit 5be5eaf

Browse files
committed
Use ClassLoader from ResourceLoader to load PropertySourceLoaders
Fixes gh-44427
1 parent 56c9551 commit 5be5eaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/config/StandardConfigDataLocationResolver.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2024 the original author or authors.
2+
* Copyright 2012-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -89,7 +89,7 @@ public StandardConfigDataLocationResolver(DeferredLogFactory logFactory, Binder
8989
ResourceLoader resourceLoader) {
9090
this.logger = logFactory.getLog(StandardConfigDataLocationResolver.class);
9191
this.propertySourceLoaders = SpringFactoriesLoader.loadFactories(PropertySourceLoader.class,
92-
getClass().getClassLoader());
92+
resourceLoader.getClassLoader());
9393
this.configNames = getConfigNames(binder);
9494
this.resourceLoader = new LocationResourceLoader(resourceLoader);
9595
}

0 commit comments

Comments
 (0)