测试环境增加client验证

This commit is contained in:
lulz1 2024-04-01 16:58:22 +08:00
parent 12011f3769
commit fa0cc239d1
1 changed files with 2 additions and 2 deletions

View File

@ -67,8 +67,8 @@ public class JwtTokenAdminInterceptor implements HandlerInterceptor {
if (res) {
return true;
} else {
// throw new AuthException(JWT_INVALID);
return true;
throw new AuthException(JWT_INVALID);
// return true;
}
}
}