springboot登录校验

一、登录功能

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张图片 

2.2 JWT令牌 

springboot登录校验_第18张图片

springboot登录校验_第19张图片 springboot登录校验_第20张图片

JWT令牌解析:

springboot登录校验_第21张图片 springboot登录校验_第22张图片

springboot登录校验_第23张图片

springboot登录校验_第24张图片 springboot登录校验_第25张图片

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

springboot登录校验_第26张图片 

2.3 过滤器Filter

springboot登录校验_第27张图片

2.3.1 快速入门

springboot登录校验_第28张图片

修改上述代码:springboot登录校验_第29张图片 springboot登录校验_第30张图片

2.3.2 详解

springboot登录校验_第31张图片

springboot登录校验_第32张图片 springboot登录校验_第33张图片

springboot登录校验_第34张图片 

2.3.3 登录校验-Filter 

springboot登录校验_第35张图片

springboot登录校验_第36张图片 springboot登录校验_第37张图片

springboot登录校验_第38张图片 

2.4 Interceptor拦截器

2.4.1 简介&快速入门

springboot登录校验_第39张图片

springboot登录校验_第40张图片 springboot登录校验_第41张图片

2.4.2 详解

springboot登录校验_第42张图片 

2.4.3 登录校验-Interceptor 

springboot登录校验_第43张图片

 

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登录校验_第44张图片 

三、异常处理

springboot登录校验_第45张图片

springboot登录校验_第46张图片 springboot登录校验_第47张图片

springboot登录校验_第48张图片 

你可能感兴趣的:(JavaWeb,java,spring,boot,intellij-idea,maven,tomcat)