Spring WebMVC 5-基于注释的拦截器

时间:2018-08-01 01:05:52

标签: java spring spring-mvc spring-web

如何仅通过注释来配置拦截器(我不喜欢在.XML文件中注册拦截器,我不使用基于.XML的配置)?

注意:我在互联网的示例中看到建议使用.canopy_banner .banner_text,当我尝试使用它时,我发现它已弃用

我正在使用SpringBoot-2在SpringWebMVC-5上进行测试

1 个答案:

答案 0 :(得分:1)

在Spring5中,您可以使用 org.springframework.web.servlet.config.annotation.WebMvcConfigurer

@EnableWebMvc
@Configuration
public class WebConfig implements WebMvcConfigurer {

     @Override
     public void addInterceptors(InterceptorRegistry registry) {
          registry.addInterceptor(....);
     }
 }