首页 > 代码库 > Spring mvc:配置不拦截指定的路径
Spring mvc:配置不拦截指定的路径
<!-- 访问拦截 --> <mvc:interceptors> <mvc:interceptor> <mvc:mapping path="/**/**"/> <!-- 不拦截的url --> <mvc:exclude-mapping path="/wechatController/"/> <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.
Spring mvc:配置不拦截指定的路径
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。