疯狂的狮子li
2021-09-26 aed8969498eb8fc39f8b461104f05009fe8533e1
ruoyi-framework/src/main/java/com/ruoyi/framework/security/filter/JwtAuthenticationTokenFilter.java
@@ -40,8 +40,8 @@
    {
        // 匿名路径放行 默认拦截
        boolean flag = true;
        PathMatcher pm = new AntPathMatcher();
        for (String anonymou : securityProperties.getAnonymous()) {
            PathMatcher pm = new AntPathMatcher();
            if (pm.match(anonymou, request.getRequestURI())) {
                flag = false;
                break;