配置ProviderManager

Spring 配置文件中ProviderManger的一种典型配置:

<bean id="authenticationManager" class="org.acegiseurity.providers.ProviderManger" >
    <property name="providers">
        <list>
            <ref bean="daoAuthenticationProvider" />
            <ref bean="ldapAuthenticationProvider" />
        </list> 
     </property>
</bean>
 

你可能感兴趣的:(Spring Security)