URi匹配判断

2023-05-25  本文已影响0人  私人云笔记_骁勇波波

    //白名单uri直接放行

        String requestURI = request.getRequestURI();

        PathMatcher pathMatcher =  new AntPathMatcher();

        boolean needAuthen = false;

        for (String uriPattern : SecurityConfig.AUTH_WHITELIST) {

            boolean match = pathMatcher.match(uriPattern, requestURI);

            if (match) {

                return true;

            }

            continue;

        }

参考文章: https://www.jianshu.com/p/4f9ee6007213

上一篇下一篇

猜你喜欢

热点阅读