需要再dispatcher servlet的配置文件寫exclude path,否則會(huì)進(jìn)入死循環(huán)。
例如,/hello是登錄界面,就需要排除/hello
<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/**" />
<mvc:exclude-mapping path="/hello" />
<bean class="com.llz.controller.TestInterceptor"></bean>
</mvc:interceptor>
例如,/hello是登錄界面,就需要排除/hello
<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/**" />
<mvc:exclude-mapping path="/hello" />
<bean class="com.llz.controller.TestInterceptor"></bean>
</mvc:interceptor>
2016-11-24