Showing
1 changed file
with
0 additions
and
1 deletions
@@ -51,7 +51,6 @@ public class SignatureVerifyInterceptor implements HandlerInterceptor, Applicati | @@ -51,7 +51,6 @@ public class SignatureVerifyInterceptor implements HandlerInterceptor, Applicati | ||
51 | public boolean preHandle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o) throws Exception { | 51 | public boolean preHandle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o) throws Exception { |
52 | //(1) 验签开关, 控制是否需要验签. 默认需要验证 | 52 | //(1) 验签开关, 控制是否需要验签. 默认需要验证 |
53 | boolean isSignatureVerifyEnable = configReader.getBoolean("gateway.security.isSignatureVerifyEnable", true); | 53 | boolean isSignatureVerifyEnable = configReader.getBoolean("gateway.security.isSignatureVerifyEnable", true); |
54 | - logger.info("isDebugEnable is {},request param debug is {}",isDebugEnable,httpServletRequest.getParameter("debug"));//TODO test | ||
55 | if(!isSignatureVerifyEnable){ | 54 | if(!isSignatureVerifyEnable){ |
56 | logger.debug("gateway.security.isSignatureVerifyEnable is false"); | 55 | logger.debug("gateway.security.isSignatureVerifyEnable is false"); |
57 | return true; | 56 | return true; |
-
Please register or login to post a comment