- 使用注解
@Configuration
配置攔截器
- 繼承
WebMvcConfigurerAdapter
檩电,SpringBoot2.0
以后可以直接實現(xiàn)WebMvcConfigurer
接口,這涉及到 JDK8
中 Interface
新特性
- 重寫
addInterceptors
添加需要的攔截器地址
registry.addInterceptor(new OneInterceptor())
.addPathPatterns("/testController/**");
// 攔截多個接口
// registry.addInterceptor(new OneInterceptor())
.addPathPatterns("/testController/**")
.addPathPatterns("/test2Controller/**");
// 攔截所有接口
// registry.addInterceptor(new OneInterceptor())
.addPathPatterns("/*/**");
super.addInterceptors(registry);
- 添加攔截器類實現(xiàn)
HandlerInterceptor
肢扯,比如OneInterceptor
本文地址:http://www.reibang.com/p/d557885b022a
最后編輯于 :
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者