liyanqi
2022-09-10 f080151063e65690b5dbf169fc6b4179f336c8e0
ycl-platform/src/main/java/com/ycl/component/DynamicSecurityFilter.java
@@ -45,7 +45,7 @@
        //白名单请求直接放行
        PathMatcher pathMatcher = new AntPathMatcher();
        for (String path : ignoreUrlsConfig.getUrls()) {
            if(pathMatcher.match(path,request.getRequestURI())){
            if(pathMatcher.match(path,request.getServletPath())){
                fi.getChain().doFilter(fi.getRequest(), fi.getResponse());
                return;
            }