|
|
@@ -54,6 +54,10 @@ public class SignatureInterceptor extends HandlerInterceptorAdapter {
|
|
|
}
|
|
|
// 过滤接口
|
|
|
String servletPath = request.getServletPath().replaceFirst("/", "");
|
|
|
+ int first = servletPath.indexOf("/");
|
|
|
+ if(first > 0){
|
|
|
+ servletPath = servletPath.substring(0, first);
|
|
|
+ }
|
|
|
if (INeedSignCheck.SIGN_IGNORE_URLS.contains(servletPath)) {
|
|
|
return true;
|
|
|
}
|