spring boot 拦截器添加


@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {
@Autowired private XxxInterceptor xxxInterceptor;//需要在该拦截器上添加@Configuration注解才能注入
  @Override
  public void addInterceptors(InterceptorRegistry registry) {
            registry.addInterceptor(new YourInterceptor()).addPathPatterns("/xx/**")//要拦截的请求
.excludePathPatterns(
"/xxx/*");//不拦截的请求
registry.addInterceptor(xxxInterceptor).addPathPatterns("xxx/xx")//推荐
} }


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM