美文网首页
Spring Security 推荐教程

Spring Security 推荐教程

作者: guideEmotion | 来源:发表于2019-10-17 15:58 被阅读0次

下面两个都是基于SpringBoot+Spring Security 5.0的

一 Filter会调用AuthenticationManager来认证,AuthenticationManager 又会调用AuthenticationProvider来处理。我们如何注册自定义的AuthenticationProvider?

目前资料发现三种方式

  • 直接将AuthenticationProvider设置到对应的Filter中。参考:https://www.cnblogs.com/lori/p/10400564.html
  • 将AuthenticationProvider对象设置到AuthenticationManager中应该是所有Filter公用的。如:
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
    auth.authenticationProvider(customAuthenticationProvider);
}

相关文章

网友评论

      本文标题:Spring Security 推荐教程

      本文链接:https://www.haomeiwen.com/subject/wmlgjctx.html