SpringSecurity之UsernamePasswordAuthenticationFilter过滤器执行流程

过滤器:UsernamePasswordAuthenticationFilter继承 AbstractAuthenticationProcessingFilter(抽象类)  

public class UsernamePasswordAuthenticationFilter extends

AbstractAuthenticationProcessingFilter {

}

核心方法,返回Authentication接口,里面有getAuthorities,getCredentials,getDetails,getPrincipal,isAuthenticated,setAuthenticated等方法

SpringSecurity之UsernamePasswordAuthenticationFilter过滤器执行流程_第1张图片

先执行attemptAuthentication方法。这个方法会从request中读出用户名、密码,组成UsernamePasswordAuthenticationToken对象,调用父类this.getAuthenticationManager().authenticate(authRequest)方法返回Authentication对象,UsernamePasswordAuthenticationToken是实现了Authentication。然后将Authentication对象传给AuthenticationManager进行登录认证。AuthenticationManager的认证过程是springsecurity认证的核心。大致记录下。

AuthenticationManager(接口)实际是ProviderManager(类),ProviderManager实现了AuthenticationManager接口。将认证的工作交给AuthenticationProvider(多个),AuthenticationManager都会包含多个AuthenticationProvider对象,有任何一个AuthenticationProvider验证通过,都属于认证通过。AuthenticationManager和AuthenticationProvider在哪里来的呢?在spring-security.xml的配置中来的

authenticate(authRequest)实现类ProviderManager

SpringSecurity之UsernamePasswordAuthenticationFilter过滤器执行流程_第2张图片

ProviderManager类核心方法循环遍历所有provider,有一个成功即认为通过

SpringSecurity之UsernamePasswordAuthenticationFilter过滤器执行流程_第3张图片

provider.authenticate(authentication)接口  AuthenticationProvider

SpringSecurity之UsernamePasswordAuthenticationFilter过滤器执行流程_第4张图片

实现类public abstract class AbstractUserDetailsAuthenticationProvider implements

AuthenticationProvider, InitializingBean, MessageSourceAware {}

SpringSecurity之UsernamePasswordAuthenticationFilter过滤器执行流程_第5张图片

SpringSecurity之UsernamePasswordAuthenticationFilter过滤器执行流程_第6张图片

UserDetails retrieveUser(String username,

UsernamePasswordAuthenticationToken authentication) 这个抽象方法实现类

SpringSecurity之UsernamePasswordAuthenticationFilter过滤器执行流程_第7张图片

核心方法

SpringSecurity之UsernamePasswordAuthenticationFilter过滤器执行流程_第8张图片

我们可以自定义userService 去重写loadByUsername(String username)方法

SpringSecurity之UsernamePasswordAuthenticationFilter过滤器执行流程_第9张图片

如果要自定义登录认证,如第三方登录后,用springsecurity接管,就需要增加类似于UsernamePasswordAuthenticationFilter的过滤器

你可能感兴趣的:(spring)