2
我已將彈簧安全性更新爲3.2能夠使用基於Java的批註來配置項目,而無需擁有XML。Spring Security - 基於Java的配置AuthenticationManager和Http403ForbiddenEntryPoint
我幾乎配置所有的東西,但有2個問題我沒有(也不知道如何配置)。
- 如何配置
Http403ForbiddenEntryPoint
? 如何配置我的定製
AuthenticationManager
?<security:http entry-point-ref="entryPoint" > ... </security:http> <bean id="entryPoint" class="org.springframework.security.web.authentication.Http403ForbiddenEntryPoint" /> <security:authentication-manager alias="myAuthenticationManagerImpl" />
這裏是我的自定義驗證類:
@Service ("authenticationManager")
public class AuthenticationManagerImpl implements AuthenticationManager {
...
}