码迷,mamicode.com
首页 > 编程语言 > 详细

Spring mvc:配置不拦截指定的路径

时间:2017-01-21 10:50:10      阅读:388      评论:0      收藏:0      [点我收藏+]

标签:配置   color   2.x   frame   hand   span   lex   element   3.0   

    <!-- 访问拦截  -->  
      <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:配置不拦截指定的路径

标签:配置   color   2.x   frame   hand   span   lex   element   3.0   

原文地址:http://www.cnblogs.com/YangK-java/p/6336572.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!