UsernamePasswordAuthenticationFilter Spring Security 2.0.8

时间:2016-01-23 21:28:29

标签: spring spring-security forms-authentication

我正在尝试将使用Spring-Security 3.x开发的自定义旧版身份验证提供程序降级到2.0.8。

我的身份验证机制使用“用户和密码表单登录...”

旧项目使用Spring Security Filter作为UsernamePasswordAuthenticationFilter类的自定义扩展

public class AuthenticationProcessingFilter extends UsernamePasswordAuthenticationFilter {

    public Authentication attemptAuthentication(HttpServletRequest request, HttpServletResponse response) {
     ...
    }
}

但Spring Security 2.0.8没有提供该类。

那么是否有UsernamePasswordAuthenticationFilter的有效替代方法,还是让我使用经典的SpringSecurityFilter?

感谢

1 个答案:

答案 0 :(得分:0)

自己找 org.springframework.security.ui.webapp.AuthenticationProcessingFilter;