博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springmvc4之<mvc:exclude-mapping path="" />拦截配置
阅读量:5970 次
发布时间:2019-06-19

本文共 917 字,大约阅读时间需要 3 分钟。

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}' is expected.

在配置springmvc拦截器的时候,一直报上面的错误,刚开始以为是xsd文件或版本不匹配,后来网上找了一下,原来是要先配置<mvc:mapping path=""/> ,再配置<mvc:exclude-mapping path=""/>,如下:

错误方式:

 

[html]
  1. <mvc:interceptors>  
  2.     <!-- 局部拦截器 -->  
  3.     <mvc:interceptor>                   
  4.         <mvc:exclude-mapping path="/user_login" />  
  5.         <mvc:exclude-mapping path="/user_logout" />  
  6.         <mvc:mapping path="/**" />  
  7.         <bean class="com.itcast.oa.interceptor.MyInterceptor" />  
  8.     </mvc:interceptor>  
  9. </mvc:interceptors>  
 
更改之后的:

 

[html]
  1. <mvc:interceptors>  
  2.     <!-- 局部拦截器 -->  
  3.     <mvc:interceptor>  
  4.         <mvc:mapping path="/**" />                      
  5.         <mvc:exclude-mapping path="/user_login" />  
  6.         <mvc:exclude-mapping path="/user_logout" />  
  7.         <bean class="com.itcast.oa.interceptor.MyInterceptor" />  
  8.     </mvc:interceptor>  
  9. </mvc:interceptors>  
 
由此,问题得到解决。

 

转载于:https://www.cnblogs.com/gscq073240/articles/6884186.html

你可能感兴趣的文章
我的友情链接
查看>>
虚拟机模拟WIN2008创建域控制器与故障转移群集
查看>>
物理层与综合布线【笔记】
查看>>
python3 列表的增删改查
查看>>
Mycat1.6之注解&多租户
查看>>
Java中long和Long有什么区别
查看>>
使用Hystrix守护应用(3)
查看>>
10 Linux引导过程和服务控制
查看>>
从Jetty、Tomcat和Mina中提炼NIO构架网络服务器的经典模式(三)
查看>>
Exchange 发送方式(Send As)和代表发送(Send on behalf)的区别
查看>>
MySQL主从复制简单设置
查看>>
异常信息: java.lang.ClassNotFoundException: org.aspec
查看>>
关于iptables
查看>>
批量安装zabbix-agent脚本
查看>>
Nagios配置文件上传
查看>>
DNS服务器以及正向名称解析机制
查看>>
[问题处理]redmine的gantt图导出出现‘星星星星星星星星’怎么解决
查看>>
快速构建Windows 8风格应用15-ShareContract构建
查看>>
搭建AAA服务器
查看>>
使用Hibernate操作数据库
查看>>