修复eff为null时报空指针的问题

This commit is contained in:
click33 2024-05-10 14:32:45 +08:00
parent bdac07d7a0
commit b4baa4229f
2 changed files with 7 additions and 1 deletions

View File

@ -27,6 +27,12 @@
<groupId>io.jsonwebtoken</groupId> <groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId> <artifactId>jjwt</artifactId>
</dependency> </dependency>
<!-- 不加这个报 java.lang.NoClassDefFoundError: javax/xml/bind/DatatypeConverter -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -99,7 +99,7 @@ public class SaJwtUtil {
// 验证是否超时 // 验证是否超时
Long eff = claims.get(KEY_EFF, Long.class); Long eff = claims.get(KEY_EFF, Long.class);
if((eff == null || eff < System.currentTimeMillis()) && eff != NEVER_EXPIRE) { if(eff == null || (eff < System.currentTimeMillis() && eff != NEVER_EXPIRE)) {
throw new SaTokenException("token 已超时,无法解析:" + jwtToken).setCode(SaTempJwtErrorCode.CODE_30303); throw new SaTokenException("token 已超时,无法解析:" + jwtToken).setCode(SaTempJwtErrorCode.CODE_30303);
} }