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