springboot登录校验
作者:mmseoamin日期:2024-02-20

一、登录功能

springboot登录校验,第1张

springboot登录校验,第2张

springboot登录校验,第3张 

二、登录校验

springboot登录校验,第4张

springboot登录校验,第5张

2.1 会话技术

springboot登录校验,第6张

springboot登录校验,第7张springboot登录校验,第8张 springboot登录校验,第9张

springboot登录校验,第10张 springboot登录校验,第11张

springboot登录校验,第12张

springboot登录校验,第13张 springboot登录校验,第14张

springboot登录校验,第15张 springboot登录校验,第16张

springboot登录校验,第17张 springboot登录校验,第18张

2.2 JWT令牌 

springboot登录校验,第19张

springboot登录校验,第20张springboot登录校验,第21张 springboot登录校验,第22张

JWT令牌解析:

springboot登录校验,第23张 springboot登录校验,第24张

springboot登录校验,第25张

springboot登录校验,第26张 springboot登录校验,第27张

如何校验JWT令牌?Filter和Interceptor两种方式。 

springboot登录校验,第28张 

2.3 过滤器Filter

springboot登录校验,第29张

2.3.1 快速入门

springboot登录校验,第30张

springboot登录校验,第31张

修改上述代码:springboot登录校验,第32张 springboot登录校验,第33张

2.3.2 详解

springboot登录校验,第34张

springboot登录校验,第35张 springboot登录校验,第36张

springboot登录校验,第37张 

2.3.3 登录校验-Filter 

springboot登录校验,第38张

springboot登录校验,第39张 springboot登录校验,第40张

springboot登录校验,第41张 

2.4 Interceptor拦截器

2.4.1 简介&快速入门

springboot登录校验,第42张

springboot登录校验,第43张 springboot登录校验,第44张

2.4.2 详解

springboot登录校验,第45张

springboot登录校验,第46张 

2.4.3 登录校验-Interceptor 

springboot登录校验,第47张

springboot登录校验,第48张 

package com.itheima.interceptor;
import com.alibaba.fastjson.JSONObject;
import com.itheima.pojo.Result;
import com.itheima.utils.JwtUtils;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
import org.springframework.util.StringUtils;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@Slf4j
@Component
public class LoginCheckInterceptor implements HandlerInterceptor {
    @Override //目标资源方法运行前运行, 返回true: 放行, 放回false, 不放行
    public boolean preHandle(HttpServletRequest req, HttpServletResponse resp, Object handler) throws Exception {
        //1.获取请求url。
        String url = req.getRequestURL().toString();
        log.info("请求的url: {}",url);
        //2.判断请求url中是否包含login,如果包含,说明是登录操作,放行。
        if(url.contains("login")){
            log.info("登录操作, 放行...");
            return true;
        }
        //3.获取请求头中的令牌(token)。
        String jwt = req.getHeader("token");
        //4.判断令牌是否存在,如果不存在,返回错误结果(未登录)。
        if(!StringUtils.hasLength(jwt)){
            log.info("请求头token为空,返回未登录的信息");
            Result error = Result.error("NOT_LOGIN");
            //手动转换 对象--json --------> 阿里巴巴fastJSON
            String notLogin = JSONObject.toJSONString(error);
            resp.getWriter().write(notLogin);
            return false;
        }
        //5.解析token,如果解析失败,返回错误结果(未登录)。
        try {
            JwtUtils.parseJWT(jwt);
        } catch (Exception e) {//jwt解析失败
            e.printStackTrace();
            log.info("解析令牌失败, 返回未登录错误信息");
            Result error = Result.error("NOT_LOGIN");
            //手动转换 对象--json --------> 阿里巴巴fastJSON
            String notLogin = JSONObject.toJSONString(error);
            resp.getWriter().write(notLogin);
            return false;
        }
        //6.放行。
        log.info("令牌合法, 放行");
        return true;
    }
    @Override //目标资源方法运行后运行
    public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
        System.out.println("postHandle ...");
    }
    @Override //视图渲染完毕后运行, 最后运行
    public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
        System.out.println("afterCompletion...");
    }
}

springboot登录校验,第49张 

三、异常处理

springboot登录校验,第50张

springboot登录校验,第51张 springboot登录校验,第52张

springboot登录校验,第53张