测试环境增加client验证

This commit is contained in:
lulz1 2024-04-01 16:58:22 +08:00
parent 1a045f07bd
commit cc739f543e
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;
}
}
}