5

Spring 文档说这ProviderManager是 的默认实现,但它是由安全命名空间自动创建和连接AuthenticationManager的实例吗?ProviderManager

换句话说,这样的配置会自动创建一个实例ProviderManager

<authentication-manager>
    <authentication-provider>
       <password-encoder hash="md5"/>
       <jdbc-user-service data-source-ref="dataSource"/>
    </authentication-provider>
</authentication-manager>

否则,我需要做什么(或声明)?

假设我想插入我自己的实现AuthenticationManager,我将如何使用命名空间来配置它?

我还想指定哪些AuthenticationProvider应该在ProviderManager. 我找到了以下配置代码:

<bean id="authenticationManager"
    class="org.springframework.security.authentication.ProviderManager">
    <property name="providers">
        <list>
            <ref local="daoAuthenticationProvider"/>
            <ref local="anonymousAuthenticationProvider"/>
        </list> 
    </property>
</bean>

但够了吗?声明列表的正确方法是AuthenticationProvider什么?关于这个问题的文档不是很清楚和完整。

4

2 回答 2

4

换句话说,这样的配置会不会自动创建一个ProviderManager的实例:

根据附录 B2 部分,答案是肯定的。

假设我想插入自己的 AuthenticationManager 实现,我将如何使用命名空间来配置它?

根据 B.3.1 节:

<global-method-security authentication-manager-ref="..." >

声明 AuthenticationProvider 列表的正确方法是什么?

在一篇博客文章<authentication-manager> ... </authentication-manager>中,应该使用类似以下的东西,而不是 using :

<bean id="authenticationManager" class="org.springframework.security.authentication.ProviderManager">
    <property name="providers">
        <list>
            <ref bean="authenticationProvider" />
            <ref bean="anonymousProvider" />
        </list>
    </property>
</bean>

<bean id="authenticationProvider" class="org.springframework.security.authentication.dao.DaoAuthenticationProvider">
    <property name="passwordEncoder">
        <bean class="org.springframework.security.authentication.encoding.Md5PasswordEncoder" />
    </property>
    <property name="userDetailsService" ref="userService" />
</bean>

<bean id="anonymousProvider" class="org.springframework.security.authentication.AnonymousAuthenticationProvider">
    <property name="key" value="SomeUniqueKeyForThisApplication" />
</bean>
于 2012-07-20T15:54:15.793 回答
0

我将以下配置与自定义身份验证提供程序一起使用;

    <authentication-manager>

        <authentication-provider user-service-ref="myUserDetailsService">
            <password-encoder hash="md5">
                <salt-source user-property="username" />
            </password-encoder>
        </authentication-provider>
    </authentication-manager>

    <beans:bean id="myUserDetailsService" autowire="byType" class="my.user.UserDetailsServiceImpl">
        <beans:property name="userManagementService" ref="userManagementService"></beans:property>
    </beans:bean>
于 2012-07-20T14:26:24.650 回答