Merge branch '3.3.x' into 3.4.x
This commit is contained in:
commit
bcda6aeb65
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2024 the original author or authors.
|
* Copyright 2012-2025 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -463,7 +463,7 @@ public class SpringApplication {
|
||||||
}
|
}
|
||||||
|
|
||||||
private <T> List<T> getSpringFactoriesInstances(Class<T> type, ArgumentResolver argumentResolver) {
|
private <T> List<T> getSpringFactoriesInstances(Class<T> type, ArgumentResolver argumentResolver) {
|
||||||
return SpringFactoriesLoader.forDefaultResourceLocation(getClassLoader()).load(type, argumentResolver);
|
return SpringFactoriesLoader.forDefaultResourceLocation(getClassLoader(null)).load(type, argumentResolver);
|
||||||
}
|
}
|
||||||
|
|
||||||
private ConfigurableEnvironment getOrCreateEnvironment() {
|
private ConfigurableEnvironment getOrCreateEnvironment() {
|
||||||
|
@ -713,10 +713,11 @@ public class SpringApplication {
|
||||||
* @return a ClassLoader (never null)
|
* @return a ClassLoader (never null)
|
||||||
*/
|
*/
|
||||||
public ClassLoader getClassLoader() {
|
public ClassLoader getClassLoader() {
|
||||||
if (this.resourceLoader != null) {
|
return getClassLoader(ClassUtils.getDefaultClassLoader());
|
||||||
return this.resourceLoader.getClassLoader();
|
}
|
||||||
}
|
|
||||||
return ClassUtils.getDefaultClassLoader();
|
private ClassLoader getClassLoader(ClassLoader fallback) {
|
||||||
|
return (this.resourceLoader != null) ? this.resourceLoader.getClassLoader() : fallback;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue