<!-- 访问拦截 -->
<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/**/**"/>
<!-- 不拦截的url -->
<mvc:exclude-mapping path="/hello.html"/> // 这里只能指定静态的文件 不能指定class,这里不能配置WEB-INFO下的jsp等静态文件,因为WEB-INFO下的静态文件是不能沟通浏览器url直接访问的.
<bean class="com.cd.interceptor.LoginHandlerInterceptor"/>
</mvc:interceptor>
</mvc:interceptors>
因为mvc:exclude-mapping不被http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd 支持
所以要改成http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
即可.
不然会报错:
cvc-complex-type.2.4.a: Invalid content was found starting with element 'mvc:exclude-mapping'. One
of '{"http://www.springframework.org/schema/mvc":mapping, "http://www.springframework.org/
schema/beans":bean}' is expected.