Browse Source

拦截类

hexiao 1 year ago
parent
commit
f55ad43e58

+ 0 - 1
application-webadmin/src/main/java/com/ankaibei/workFlow/webadmin/interceptor/AuthenticationInterceptor.java

@@ -51,7 +51,6 @@ public class AuthenticationInterceptor implements HandlerInterceptor {
             throws Exception {
         String url = request.getRequestURI();
         log.info("拦截**请求路径:{}",url);
-        log.info("拦截**请求参数:{}",request.getParameterMap());
         String token = this.getTokenFromRequest(request);
         boolean noLoginUrl = this.isNoAuthInterface(handler);
         // 如果接口方法标记NoAuthInterface注解,可以直接跳过Token鉴权验证,这里主要为了测试接口方便