0

我正在尝试在 Spring security 3 中实现 salt 源作为我的安全性的一部分。我想给用户名加盐,但是为了使用它,如下所示,我需要实现哪个域才能利用 spring security 的默认实现???

<authentication-manager>
    <authentication-provider user-service-ref="userDetailsService">
        <password-encoder hash="sha-256">
            <salt-source user-property="username" />
        </password-encoder>
    </authentication-provider>
</authentication-manager>
4

1 回答 1

-1

我猜你指的是安全命名空间的域。Spring Security 命名空间配置的位置是:http ://www.springframework.org/schema/security/spring-security.xsd (不要指定要根据最新版本解析的版本)。查看文档:Spring Security 命名空间配置

于 2013-05-09T02:50:56.240 回答