去除了打印log

This commit is contained in:
wucongxing8150 2025-05-20 13:08:03 +08:00
parent 1a8c64757d
commit bbc66da590
2 changed files with 0 additions and 2 deletions

View File

@ -20,7 +20,6 @@ public class AuthInterceptor extends BaseInterceptor {
public boolean preHandle(@NotNull HttpServletRequest request, @NotNull HttpServletResponse response, @NotNull Object handler) throws Exception {
// 放行白名单路径
if (isWhiteListed(request)) {
System.out.println(111111);
// 在白名单
return true;
}

View File

@ -26,7 +26,6 @@ public class JwtInterceptor extends BaseInterceptor {
public boolean preHandle(@NotNull HttpServletRequest request, @NotNull HttpServletResponse response, @NotNull Object handler) throws Exception {
// 放行白名单路径
if (isWhiteListed(request)) {
System.out.println(111111);
// 在白名单
return true;
}