目录
问题场景
我们的spring boot项目通常会使用接口文档管理依赖如knife4j(swagger3)
Spring Boot3整合knife4j(swagger3)_springboot3 knife4j-CSDN博客
通常也会使用拦截器来做登录鉴权、接口限流等操作,但是使用拦截器会导致swagger接口文档的访问被拦截,导致无法正常访问。
解决方案
这个问题解决起来非常简单,只需要配置一下拦截器放行路径,把swagger相关的所有资源访问都放行即可。
在项目的WebMVC配置类里面的拦截器追加排除路径:
java
//拦截器公共排除路径设置
private InterceptorRegistration configureInterceptorPublicExcludePathPatterns(InterceptorRegistry registry, HandlerInterceptor interceptor) {
return registry.addInterceptor(interceptor)
// 排除特定业务接口
.excludePathPatterns("/captcha/**", "/test/**", "/", "/user/login/**","/function-system/**")
//排除静态资源
.excludePathPatterns("*.html", "/images/**")
//排除swagger相关
.excludePathPatterns("/doc.html","/webjars/**", "/swagger-resources", "/swagger-resources/**", "/v3/**", "/favicon.ico", "Mozilla/**");
}
关键代码
java
//排除swagger相关
.excludePathPatterns("/doc.html","/webjars/**", "/swagger-resources", "/swagger-resources/**", "/v3/**", "/favicon.ico", "Mozilla/**");
放行后swagger文档就能正常访问了。