倒包:
<!-- JWT依赖--><dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt</artifactId> <version>0.9.1</version></dependency>
<!-- no more than 2.3.3--><dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <version>2.3.3</version></dependency>
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId></dependency>
工具类:
public class JwtUtils {
private static String signKey ="yixiatech";
private static Long expire =1626662400000L;
/**
? ? * 生成JWT令牌
? ? * @param claims JWT第二部分负载 payload 中存储的内容
? ? * @return
*/
? ? public static String generateJwt(Map claims){
String jwt =Jwts.builder()
.addClaims(claims)
.signWith(SignatureAlgorithm.HS256,signKey)
.setExpiration(new Date(System.currentTimeMillis() +expire))
.compact();
return jwt;
}
/**
? ? * 解析JWT令牌
? ? * @param jwt JWT令牌
? ? * @return JWT第二部分负载 payload 中存储的内容
? ? */
? ? public static Claims parseJWT(String jwt){
Claims claims =Jwts.parser()
.setSigningKey(signKey)
.parseClaimsJws(jwt)
.getBody();
return claims;
}
}
控制器代码:
@Slf4j
@RestController
public class LoginController {
@Autowired
? ? private EmpService empService;
@PostMapping("/login")
public Result login(@RequestBody Emp emp){
Emp e =empService.login(emp);
log.info("员工登录: {}",e);
//登录成功,生成令牌,下发令牌
? ? ? ? if (e !=null){
Mapclaims =new HashMap<>();
claims.put("id",e.getEmpId());
claims.put("name",e.getName());
claims.put("username",e.getUsername());
String jwt =JwtUtils.generateJwt(claims);//jwt包含了当前登录的员工信息
? ? ? ? ? ? return Result.success(jwt);
}
//登录失败, 返回错误信息
? ? ? ? return Result.error("用户名或密码错误");
}
}
当我们在Filter类上面加了@WebFilter注解之后,接下来我们还需要在启动类上面加上一个注解@ServletComponentScan,通过这个@ServletComponentScan注解来开启SpringBoot项目对于Servlet组件的支持。
具体操作的类
import javax.servlet.*;
import javax.servlet.annotation.WebFilter;
import java.io.IOException;
@WebFilter(urlPatterns ="/*")
public class EmpFilter implements Filter {
@Override //初始化方法, 只调用一次
? ? public void init(FilterConfig filterConfig)throws ServletException {
System.out.println("init 初始化方法执行了");
}
@Override //拦截到请求之后调用, 调用多次
? ? public void doFilter(ServletRequest request,ServletResponse response,FilterChain chain)throws IOException,ServletException {
System.out.println("Demo 拦截到了请求...放行前逻辑");
chain.doFilter(request,response);
System.out.println("Demo 拦截到了请求...放行后逻辑");
}
@Override //销毁方法, 只调用一次
? ? public void destroy() {
System.out.println("destroy 销毁方法执行了");
}
}
对象转json
依赖
<!--fastJSON--><dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.76</version></dependency>
代码
Result error = Result.error("NOT_LOGIN");
//手动转换 对象--json --------> 阿里巴巴fastJSON
String notLogin = JSONObject.toJSONString(error);