在spring-mvc.xml文件中加上<mvc:interceptors></mvc:interceptors>,
<mvc:interceptors>
<bean id="allInterceptors" class=" interceptor.MyInterceptors"></bean>
</mvc:interceptors>
直接配置在interceptors下会拦截所有请求,如果:
<mvc:interceptors>
<bean id="allInterceptors" class=" interceptor.MyInterceptors"></bean>
<mvc:interceptor>
<mvc:mapping path="/login/*"/>
<bean></bean>
</mvc:interceptor>
</mvc:interceptors>
配置在interceptor里面只拦截配置的特定请求。