SpringSecurity源码
文章平均质量分 53
微卡Chou
这个作者很懒,什么都没留下…
展开
-
SpringSecurity源码之UsernamePasswordAuthenticationFilter
SpringSecurity源码之UsernamePasswordAuthenticationFilter一、是什么认证操作全靠这个过滤器,默认匹配URL为/login且必须为POST请求。它的作用是拦截登录请求并获取账号和密码,然后把账号密码封装到认证凭据UsernamePasswordAuthenticationToken中,然后把凭据交给特定配置的AuthenticationManager去作认证。二、源码public class UsernamePasswordAuthentication原创 2021-05-05 11:33:25 · 623 阅读 · 0 评论 -
SpringSecurity源码之CsrfFilter
SpringSecurity源码之CsrfFilter一、是什么org.springframework.security.web.csrf.CsrfFiltercsrf又称跨域请求伪造,SpringSecurity会对所有post请求验证是否包含系统生成的csrf的token信息,如果不包含,则报错。起到防止csrf攻击的效果。二、源码介绍//// Source code recreated from a .class file by IntelliJ IDEA// (powered by Fe原创 2021-05-03 23:11:25 · 732 阅读 · 0 评论