【update】修改jjwt支持jdk11

This commit is contained in:
朱杰
2021-06-16 16:14:03 +08:00
parent 83718c61cd
commit 9cf335c1cd
4 changed files with 30 additions and 13 deletions

View File

@@ -74,7 +74,15 @@
<!--Token生成与解析-->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<artifactId>jjwt-api</artifactId>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
</dependency>
<!-- redis 缓存操作 -->