使用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">
本文介绍了解决在使用SpringMVC框架时启动Tomcat遇到特定错误的方法。首先建议升级Spring版本到3.1或更高,若问题仍然存在,则推荐修改XML配置文件的schemaLocation路径。
1410

被折叠的 条评论
为什么被折叠?



