Merge remote-tracking branch 'origin/6.3.x'

This commit is contained in:
Josh Cummings 2024-11-22 17:23:43 -07:00
commit 315aafd464
No known key found for this signature in database
GPG Key ID: A306A51F43B8E5A5
1 changed files with 9 additions and 48 deletions

View File

@ -16,8 +16,7 @@
package org.springframework.security.config.annotation.authentication.configuration; package org.springframework.security.config.annotation.authentication.configuration;
import java.util.ArrayList; import java.util.Arrays;
import java.util.List;
import org.apache.commons.logging.Log; import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory; import org.apache.commons.logging.LogFactory;
@ -63,62 +62,24 @@ class InitializeAuthenticationProviderBeanManagerConfigurer extends GlobalAuthen
if (auth.isConfigured()) { if (auth.isConfigured()) {
return; return;
} }
List<BeanWithName<AuthenticationProvider>> authenticationProviders = getBeansWithName( String[] beanNames = InitializeAuthenticationProviderBeanManagerConfigurer.this.context
AuthenticationProvider.class); .getBeanNamesForType(AuthenticationProvider.class);
if (authenticationProviders.isEmpty()) { if (beanNames.length == 0) {
return; return;
} }
else if (authenticationProviders.size() > 1) { else if (beanNames.length > 1) {
List<String> beanNames = authenticationProviders.stream().map(BeanWithName::getName).toList();
this.logger.info(LogMessage.format("Found %s AuthenticationProvider beans, with names %s. " this.logger.info(LogMessage.format("Found %s AuthenticationProvider beans, with names %s. "
+ "Global Authentication Manager will not be configured with AuthenticationProviders. " + "Global Authentication Manager will not be configured with AuthenticationProviders. "
+ "Consider publishing a single AuthenticationProvider bean, or wiring your Providers directly " + "Consider publishing a single AuthenticationProvider bean, or wiring your Providers directly "
+ "using the DSL.", authenticationProviders.size(), beanNames)); + "using the DSL.", beanNames.length, Arrays.toString(beanNames)));
return; return;
} }
AuthenticationProvider authenticationProvider = authenticationProviders.get(0).getBean(); AuthenticationProvider authenticationProvider = InitializeAuthenticationProviderBeanManagerConfigurer.this.context
String authenticationProviderBeanName = authenticationProviders.get(0).getName(); .getBean(beanNames[0], AuthenticationProvider.class);
auth.authenticationProvider(authenticationProvider); auth.authenticationProvider(authenticationProvider);
this.logger.info(LogMessage.format( this.logger.info(LogMessage.format(
"Global AuthenticationManager configured with AuthenticationProvider bean with name %s", "Global AuthenticationManager configured with AuthenticationProvider bean with name %s",
authenticationProviderBeanName)); beanNames[0]));
}
/**
* @return a list of beans of the requested class, along with their names. If
* there are no registered beans of that type, the list is empty.
*/
private <T> List<BeanWithName<T>> getBeansWithName(Class<T> type) {
List<BeanWithName<T>> beanWithNames = new ArrayList<>();
String[] beanNames = InitializeAuthenticationProviderBeanManagerConfigurer.this.context
.getBeanNamesForType(type);
for (String beanName : beanNames) {
T bean = InitializeAuthenticationProviderBeanManagerConfigurer.this.context.getBean(beanName, type);
beanWithNames.add(new BeanWithName<>(bean, beanName));
}
return beanWithNames;
}
static class BeanWithName<T> {
private final T bean;
private final String name;
BeanWithName(T bean, String name) {
this.bean = bean;
this.name = name;
}
T getBean() {
return this.bean;
}
String getName() {
return this.name;
}
} }
} }