@Configuration
public class InterceptorConfig implements WebMvcConfigurer {
@Bean
public AuthorityInterceptor getUserInterceptor(){
return new AuthorityInterceptor();
}
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(getUserInterceptor()).addPathPatterns(
"/**")
.excludePathPatterns(
"/register/**"
, "/login/**"
);
}
}
版权归属:
王小木人个人技术文章记录
许可协议:
本文使用《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》协议授权
评论区