The interceptors in Spring MVC 3.0 doesn't work

Posted by Shenjun on Stack Overflow See other posts from Stack Overflow or by Shenjun
Published on 2010-03-14T08:20:51Z Indexed on 2010/03/14 8:25 UTC
Read the original article Hit count: 642

Filed under:
|

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?

© Stack Overflow or respective owner

Related posts about spring-mvc

Related posts about interceptor