The interceptors in Spring MVC 3.0 doesn't work
- by Shenjun
I just used annotation-based controller to do the request mapping. But when I configured interceptors like the following
<property name="interceptors">
<list>
<bean class="com.glamour.web.interceptor.MenuItemsInterceptor"></bean>
</list>
</property>
</bean>
The interceptors doesn't work of each controller with @controller
Could any one help me the resolve this issue?