在Eclipse中找不到元素'beans'的声明

时间:2019-06-02 05:17:12

标签: spring

我将使用Spring开发一些基本程序。当我运行该程序时,它显示为“ cvc-elt.1:找不到元素'beans'的声明”。我该如何解决这个问题?

我尝试了各种解决方法,但还无法解决。

我的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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans 
       spring-beans-3.1.xsd">

       <bean id="Point10" class="com.example.pkg.Point">
       <property name="x" value="10"/>
       <property name="y" value="10"/>
       </bean>    
</beans>

0 个答案:

没有答案