0
我試圖在Spring安全性3中實現一個鹽源作爲我的安全性的一部分。我想要匿名用戶名,但爲了使用這個如下所示,我需要實現哪個域以利用彈簧安全的默認實現?使用鹽源bean,我需要實現哪個域?
<authentication-manager>
<authentication-provider user-service-ref="userDetailsService">
<password-encoder hash="sha-256">
<salt-source user-property="username" />
</password-encoder>
</authentication-provider>
</authentication-manager>
不,我指的是一個有getters/setters的類。我需要實現哪個課程? – Bobby 2013-05-09 20:14:39
如果你想創建自己的,而不是使用Spring的默認的,你必須實現'org.springframework.security.authentication.dao.SaltSource'接口。但這是*接口*,而不是*域*。 – Micho 2015-08-06 03:17:39