context-path 配置接口前缀后拦截器不生效
小于 1 分钟
context-path 配置接口前缀后拦截器不生效
当在 application.yml 中配置了 context-path: /api 接口前缀后,Spring Boot 会自动将所有请求的路径都加上 /api 前缀。
因此,拦截器的路径匹配就不需要再写 /api 前缀了。如果你依然在拦截器中写了 /api/**,它会再额外加上 /api,变成/api/api/user/list,导致无法正确匹配到接口,进而无法实现拦截。
正确的做法是直接写 /** 来匹配所有路径,就是只写Controller中定义的接口地址,/api 由于使用了context-path配置会自动添加上
yml文件
server:
servlet:
context-path: /api
添加拦截器
@Configuration
public class WebConfig implements WebMvcConfigurer {
@Autowired
UserLoginInterceptor userLoginInterceptor;
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(userLoginInterceptor).addPathPatterns("/**")
.excludePathPatterns(
"/doc.html",
"/swagger-ui/**",
"/v3/api-docs/**",
"/swagger-resources/**",
"/v2/api-docs"
);
}
}