mvc:annotation-driven' must have no character or element问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mvc:annotation-driven' must have no character or element问题相关的知识,希望对你有一定的参考价值。
使用SpringMVC,启动tomcat报这个错误
解决办法
首先将Spring版本提升到3.1及以上
如果还不行替换xml文件头部:
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
- xmlns:mvc="http://www.springframework.org/schema/mvc"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-3.2.xsd
- http://www.springframework.org/schema/mvc
- http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">
以上是关于mvc:annotation-driven' must have no character or element问题的主要内容,如果未能解决你的问题,请参考以下文章
如何摆脱 <mvc:annotation-driven />?
mvc:annotation-driven 不能解决 406 错误
springMVC-mvc:annotation-driven
在 applicationContext.xml 中添加 <mvc:annotation-driven> 时出错