参考">自测 参考 自测 参考 /** * 真 放行 * 假 不放行 * @param urlPath * @return */ public static Boolean isOkPath(String urlPath){ AntPathMatcher antPathMatcher = new AntPathMatcher(); return Arrays.stream(CUSTOM_PATH) .anyMatch(e ->antPathMatcher.match(e, urlPath)); }