Spring Security继承AbstractAuthenticationProcessingFilter验证成功后自动跳转地址“/”
Spring Security版本:5.5.1
最近学Spring Security发现自己实现的通过继承AbstractAuthenticationProcessingFilter类在验证成功后,总是自动跳转“/”地址
查看源码:
Authentication authenticationResult = this.attemptAuthentication(request, response);
if (authenticationResult == null) {
return;
}
thi
原创
2021-08-09 16:59:05 ·
1279 阅读 ·
0 评论