List
List SWAGGER_URL = Arrays.asList(
"/v3/**",//此请求不放开会导致 error api-docs无法正常显示 https://songzixian.com/javalog/905.html
"/swagger-ui**",
"/swagger-ui/**",//此请求不放开没有权限请求一直失败,处于轮询接口
"/swagger-resources/**",//此请求不放开导致访问出现Unable to infer base url. This is common when using dynamic servlet registration or when the API is https://blog.csdn.net/just_now_and_future/article/details/89343680
"/webjars/**",//knife4j UI
"/favicon.ico"
);
Set
SetsuffixSet = new HashSet<>(Arrays.asList(".js", ".css", ".html", ".ico", ".txt", ".woff", ".woff2"));



