Is it possible to wire a Spring MVC Interceptor using annotations?
Stumbled upon this question while searching exactly this. Finally I found out that it works in Spring 3.1 using @EnableWebMVC in conjunction with WebMvcConfigurerAdapter. Simple Example: @Configuration @EnableWebMvc @ComponentScan(basePackages=”webapp.base.package”) public class WebApplicationConfig extends WebMvcConfigurerAdapter { @Override public void addInterceptors(InterceptorRegistry registry) { registry.addInterceptor(new LoggerInterceptor()); } }