SpringBoot2+Vue2实战(七)springboot集成jwt

news/2024/11/28 13:28:42/

一、集成jwt

JWT依赖

 <!-- JWT --><dependency><groupId>com.auth0</groupId><artifactId>java-jwt</artifactId><version>3.10.3</version></dependency>

UserDto

import cn.hutool.core.annotation.Alias;
import lombok.Data;@Data
public class UserDto {private String username;private String password;@Alias("nickname")private String nickname;private String avatarUrl;private String token;
}

UserServiceImpl

@Overridepublic UserDto login(UserDto userDto) {User one = getUserInfo(userDto);if (one != null){BeanUtil.copyProperties(one,userDto,true);//设置tokenString token = TokenUtils.getToken(one.getId().toString(), one.getPassword());userDto.setToken(token);return userDto;}else {throw new ServiceException(Constants.CODE_600,"用户名或密码错误");}}

TokenUtils

生成token

import cn.hutool.core.date.DateUtil;import com.auth0.jwt.JWT;
import com.auth0.jwt.algorithms.Algorithm;import java.util.Date;public class TokenUtils {/*** 生成Token* @return* */public static String getToken(String userId,String sign){return JWT.create().withAudience(userId) // 将 user id 保存到 token 里面 作为载荷.withExpiresAt(DateUtil.offsetHour(new Date(),2)) //两小时后token过期.sign(Algorithm.HMAC256(sign)); // 以 sign 作为 token 的密钥}
}

request.js

放开请求头,并从浏览器获取user对象

//从浏览器中获取userlet user = localStorage.getItem("user")?JSON.parse(localStorage.getItem("user")):{}if (user){config.headers['token'] = user.token;  // 设置请求头}

JwtInterceptor

Token验证


import cn.hutool.core.util.StrUtil;
import com.auth0.jwt.JWT;
import com.auth0.jwt.JWTVerifier;
import com.auth0.jwt.algorithms.Algorithm;
import com.auth0.jwt.exceptions.JWTDecodeException;
import com.auth0.jwt.exceptions.JWTVerificationException;
import com.example.springboot.common.Constants;
import com.example.springboot.entity.User;
import com.example.springboot.exception.ServiceException;
import com.example.springboot.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.method.HandlerMethod;
import org.springframework.web.servlet.HandlerInterceptor;import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;public class JwtInterceptor implements HandlerInterceptor {@Autowiredprivate UserService userService;@Overridepublic boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) {String token = request.getHeader("token");//如果不是映射方法,直接通过if (!(handler instanceof HandlerMethod)) {return true;}if (StrUtil.isBlank(token)) {throw new ServiceException(Constants.CODE_401, "无token,请重新登录");}//获取token中的useridString userId;try {userId = JWT.decode(token).getAudience().get(0);} catch (JWTDecodeException j) {throw new ServiceException(Constants.CODE_401, "token验证失败");}//根据token中的userid查询数据库User user = userService.getById(userId);if (user == null) {throw new ServiceException(Constants.CODE_401, "用户不存在,请重新登录");}//验证tokenJWTVerifier jwtVerifier = JWT.require(Algorithm.HMAC256(user.getPassword())).build();try {jwtVerifier.verify(token);} catch (JWTVerificationException e) {throw new ServiceException(Constants.CODE_401, "token验证失败,请重新登录");}return true;}
}
InterceptorConfig 
拦截器
import com.example.springboot.config.interceptor.JwtInterceptor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;@Configuration
public class InterceptorConfig implements WebMvcConfigurer {@Overridepublic void addInterceptors(InterceptorRegistry registry) {registry.addInterceptor(jwtInterceptor())//拦截所有请求通过判断token是否合法来决定是否需要登录.addPathPatterns("/**")//放行.excludePathPatterns("/user/login","/user/register","/**/export","/**/import");}@Beanpublic JwtInterceptor jwtInterceptor(){return new JwtInterceptor();}
}

request.js

加入token验证信息提示

//当权限验证不通过时提示if (res.code === '401'){ElementUI.Message({message:res.msg,type:"error"})}return res;},

二、获取用户对象信息

TokenUtils

public static UserService staticUserService;@Resourceprivate UserService userService;@PostConstructpublic void setUserService() {staticUserService = userService;}/*** 获取当前登录的用户信息** @return*/public static User getCurrentUser() {try {HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();String token = request.getHeader("token");if (StrUtil.isNotBlank(token)) {String userId = JWT.decode(token).getAudience().get(0);return staticUserService.getById(Integer.valueOf(userId));}} catch (Exception e) {return null;}return null;}

UserController

//分页查询 mybatis-plus方式@GetMapping("/selectPage")public Result selectPage(@RequestParam(defaultValue = "") String username,@RequestParam Integer pageSize,@RequestParam Integer pageNum,@RequestParam(defaultValue = "") String email,@RequestParam(defaultValue = "") String address) {IPage<User> page = new Page<>(pageNum, pageSize);QueryWrapper<User> queryWrapper = new QueryWrapper<>();queryWrapper.orderByDesc("id");if (!"".equals(username)) {queryWrapper.like("username", username);}if (!"".equals(email)) {queryWrapper.like("email", email);}if (!"".equals(address)) {queryWrapper.like("address", address);}//获取当前用户信息User currentUser = TokenUtils.getCurrentUser();System.out.println("获取当前用户信息============" + currentUser.getNickname());return success(userService.page(page, queryWrapper));}


http://www.ppmy.cn/news/660659.html

相关文章

深入了解 KaiwuDB 负载行为数据采集

KAP 基于数据库系统内部反馈的各项数据指标&#xff0c;可帮助用户全面掌握 KaiwuDB 集群的整体运行情况&#xff0c;实时监测集群相关性能&#xff0c;可提供整体资源和集群状态角度的系统监控。 除此之外&#xff0c;KaiwuDB 数据库内部开发实现基于负载业务的行为数据采集功…

1、已知:1公里=2里=1000米,请编写一个程序,输入公里数,将其转换成里和米。要求程序的输入输出如下: 请输入公里数: 3.3 3.30公里=6.60里=3300米

#define _CRT_SECURE_NO_WARNINGS 1 #include<stdio.h> int main() { float a, b, c;//定义公里&#xff0c;里&#xff0c;米的变量类型 printf("请输入公里数:"); scanf("%f", &a);//输入公里的值 b 2*a; c 1000*a; …

经度和纬度为多少米

经度1秒为31.25米&#xff08;固定&#xff09;纬度1秒为多少米不固定&#xff0c;计算公式如下&#xff1a; 纬度1″&#xff1a;31.25米 * cos(纬度/ 180 * Math.PI)

给定经纬度,计算附近多少公里范围内的地点

场景&#xff1a;当时我们项目用的是spring-data-jpa, 用hql实现的话&#xff0c;实在是不知道怎么搞&#xff0c;所以想出这么个方法。这样做的就是避免直接在数据查询语句中去计算该点附近多少公里范围内的点&#xff0c;将sql语句的实现转成了代码实现。 第一步&#xff1a;…

python公里转海里_英里和海里和公里怎么换算

长度单位的确定伴随着人类文明的进步&#xff0c;随着全球一体化的进程各种单位都更科学标准&#xff0c;有些长度单位可能使用的人更少了&#xff0c;但它在不同的时代伴演着重要的角色&#xff0c;英里这个单位现在也还有很多人使用&#xff0c;我们一起来了解下这个长度单位…

出租车计费标准为:3 公里以内 10 元,3 公里以后每 1 公里加 2 元,超过 15 公里,每公里加 3 元 分别算出2公里、8公里、20公里的钱数

/* SUM10SUM10(8-3)*2 20 SUM34(20-15)*3 49* */ import java.util.Scanner;public class Test19 {public static void main(String[] args) {// TODO Auto-generated method stubint sum10;Scanner sc new Scanner(System.in);System.out.println("请输入车行驶的…

每公里配速9分18秒,双足机器人完成5公里慢跑

内容描述&#xff1a;俄勒冈州立大学的 Cassie 在 53 分钟里完成了一段五公里慢跑&#xff0c;刷新了双足机器人的运动记录。 近日&#xff0c;来自美国俄勒冈州立大学的知名机器人研究团队 Agility Robotics 打造的双足机器人 Cassie &#xff0c;耗时 53 分钟完成了一段 5 公…

根据经纬度查询附近几公里的数据(<5)代表5公里

根据经纬度查询附近几公里的数据&#xff08;&#xff1c;5&#xff09;代表5公里 点击这里&#xff0c;获取维度 $lng 30.187941; // 当前纬度 纬度最高90 $lat 120.259814; // 当前经度 "select * from user where (acos(sin(({$lat}*3.1415)/180)* sin((lat*3.141…