1
liyanqi
2022-09-15 1ab816e3c12c9c35bda6307c07f24e5677b87ab4
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;
            }