在设置了一个新的基于 Spring 的应用程序后,我在应用程序上下文中遇到了引用模式 (http://www.springframework.org/schema/beans/spring-beans-3.0.xsd) 的问题。
appContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
....
</beans:beans>
错误
Referenced file contains errors (http://www.springframework.org/schema/beans/spring-beans-3.0.xsd).
即使我将配置降低到最低版本(没有任何 bean 定义),我也会收到此错误。有人暗示这里出了什么问题吗?提前致谢!
顺便说一句:我正在使用 STS 2.7.1