转载请注明出处http://blog.csdn.net/qq_26525215
本文源自【大学之旅_谙忆的博客】
今天写SpringMVC的拦截器的时候遇到这样一个错误
Element mvc:exclude-mapping is not allowed here.
<!-- SpringMVC拦截器 -->
<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/user/*"/> <!-- 拦截范围 -->
<mvc:exclude-mapping path="/user/login.*"/> <!--不被拦截范围路径-->
<bean class="com.uifuture.interceptor.UserLoginInterceptor"></bean>
</mvc:interceptor>
</mvc:interceptors>
经过一番搜索找到了原因。
SpringMVC在3.2版本之前是不支持mvc:exclude-mapping 标签的。
可以将把
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
改成
http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
这样问题可以得到解决。
本文章由[谙忆]编写 所有权利保留。
欢迎转载分享是进步的源泉。
转载请注明出处http://blog.csdn.net/qq_26525215
本文源自【大学之旅_谙忆的博客】
时间: 2025-01-19 23:46:58