Spring Boot 2结合Spring security + JWT实现微信小程序登录

本文介绍了如何使用Spring Boot 2集成Spring Security和JWT技术,实现在微信小程序上的用户登录功能。首先,通过自定义登录方式替换Spring Security的默认登录。接着,详细阐述了JWT的颁发过程以及如何利用JWT管理用户登录状态,避免使用session。此外,还添加了专门的JWT认证过滤器以确保安全性。最后,展示了如何启用注解式接口鉴权,并在需要保护的接口上添加相关注解进行权限控制。
摘要由CSDN通过智能技术生成

项目源码:https://gitee.com/tanwubo/jwt-spring-security-demo

登录

通过自定义的WxAppletAuthenticationFilter替换默认的UsernamePasswordAuthenticationFilter,在UsernamePasswordAuthenticationFilter中可任意定制自己的登录方式。

用户认证

需要结合JWT来实现用户认证,第一步登录成功后如何颁发token。

public class CustomAuthenticationSuccessHandler implements AuthenticationSuccessHandler {

    @Autowired
    private JwtTokenUtils jwtTokenUtils;

    @Override
    public void onAuthenticationSuccess(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Authentication authentication) throws IOException, ServletException {
        // 使用jwt管理,所以封装用户信息生成jwt响应给前端
        String token = jwtTokenUtils.generateToken(((WxAppletAuthenticationToken)authentication).getOpenid());
        Map<String, Object
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值