防止错误token导致的解析异常

This commit is contained in:
RuoYi 2021-07-29 17:32:17 +08:00
parent 02a732a7ad
commit c6f64b3b56

View File

@ -59,6 +59,8 @@ public class TokenService
// 获取请求携带的令牌
String token = getToken(request);
if (StringUtils.isNotEmpty(token))
{
try
{
Claims claims = parseToken(token);
// 解析对应的权限以及用户信息
@ -67,6 +69,10 @@ public class TokenService
LoginUser user = redisCache.getCacheObject(userKey);
return user;
}
catch (Exception e)
{
}
}
return null;
}