当前位置:网站首页>11-security认证.md
11-security认证.md
2022-08-03 00:34:00 【张 邵】
我们需要自定义一个过滤器,这个过滤器会去获取请求头中的token,对token进行解析取出其中的userid。
使用userid去redis中获取对应的LoginUser对象。
然后封装Authentication对象存入SecurityContextHolder
@Component
public class JwtAuthenticationTokenFilter extends OncePerRequestFilter {
@Autowired
private RedisCache redisCache;
@Override
protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException {
//获取token
String token = request.getHeader("token");
if (!StringUtils.hasText(token)) {
//放行
filterChain.doFilter(request, response);
return;
}
//解析token
String userid;
try {
Claims claims = JwtUtil.parseJWT(token);
userid = claims.getSubject();
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException("token非法");
}
//从redis中获取用户信息
String redisKey = "login:" + userid;
LoginUser loginUser = redisCache.getCacheObject(redisKey);
if(Objects.isNull(loginUser)){
throw new RuntimeException("用户未登录");
}
//存入SecurityContextHolder
//TODO 获取权限信息封装到Authentication中
UsernamePasswordAuthenticationToken authenticationToken =
new UsernamePasswordAuthenticationToken(loginUser,null,null);
SecurityContextHolder.getContext().setAuthentication(authenticationToken);
//放行
filterChain.doFilter(request, response);
}
}
/** * @Author 三更 B站: https://space.bilibili.com/663528522 */
@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Bean
public PasswordEncoder passwordEncoder(){
return new BCryptPasswordEncoder();
}
@Autowired
JwtAuthenticationTokenFilter jwtAuthenticationTokenFilter;
@Override
protected void configure(HttpSecurity http) throws Exception {
http
//关闭csrf
.csrf().disable()
//不通过Session获取SecurityContext
.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS)
.and()
.authorizeRequests()
// 对于登录接口 允许匿名访问
.antMatchers("/user/login").anonymous()
// 除上面外的所有请求全部需要鉴权认证
.anyRequest().authenticated();
//把token校验过滤器添加到过滤器链中
http.addFilterBefore(jwtAuthenticationTokenFilter, UsernamePasswordAuthenticationFilter.class);
}
@Bean
@Override
public AuthenticationManager authenticationManagerBean() throws Exception {
return super.authenticationManagerBean();
}
}
边栏推荐
猜你喜欢
Moco of Mock tools use tutorial
科捷智能冲刺科创板:年营收12.8亿 顺丰与日日顺是股东
Auto.js 特殊定位控件方法 不能在ui线程执行阻塞操作,请使用setTimeout代替
在表格数据上,为什么基于树的模型仍然优于深度学习?
2022年8月2日——使用idea搭建servlet+jsp项目
九零后程序员心声:互联网的同行们,别卷了,再卷人都卷没了
高并发基石:多线程、守护线程、线程安全、线程同步、互斥锁,一文扫尽!...
【图像分类】2021-EfficientNetV2 CVPR
吴恩达深度学习deeplearning.ai——第一门课:神经网络与深度学习——第二节:神经网络基础(上)
【飞控开发高级教程1】疯壳·开源编队无人机-飞控整机代码走读、编译与烧写
随机推荐
线上交流丨稀疏神经网络:实践和理论(青源Talk第23期 汪张扬)
Greenplum数据库故障分析——can not listen port
npm运行项目dependencies were not found: core-js/modules/es6.array.fill
NVM和NRM
封装和练习题目
投资的思考
浅谈敏捷开发
优秀论文以及思路分析01
华为防火墙双机热备技术:HRP、VGMP、VRRP,三大技术值得一学!
剑指 Offer 21. 调整数组顺序使奇数位于偶数前面
基于rt-thread studio的STM32裸机开发——LED
科捷智能冲刺科创板:年营收12.8亿 顺丰与日日顺是股东
全栈---Proxy
Visual Studio中vim模拟器
高并发基石:多线程、守护线程、线程安全、线程同步、互斥锁,一文扫尽!...
esp32和ros2基础篇草稿-micro-ros-
【多线程】Thread类的基本用法
【MySQL —— 数据库约束】
公司招个程序员,34岁以上两年一跳的不要,开出工资以为看错了
暴力递归到动态规划 06 (剑指 Offer II 095. 最长公共子序列)