Cannot find the declaration of element 'beans'. 的解决方法

来源:互联网 发布:猫眼和微影合并.知乎 编辑:程序博客网 时间:2024/06/02 12:02


org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element 'beans'.

如果在项目中遇到该异常,通常是项目无法下载到spring-beans-2.5.xsd文件而出现的问题,这里的版本号因项目版本而异。

这里需要配置本地的xsd文件,方法如下:

找到你的项目中引用的spring的核心包,spring.jar

用压缩文件打开,找到该路径

org/springframework/beans/factory/xml/

并将这个路径下的xsd文件以下列形式配置到applicationContext.xml文件中,如果有多个配置文件,则全部代替

即以     classpath:/org/springframework/beans/factory/xml/spring-beans-2.5.xsd  代替

             http://www.springframework.org/schema/beans/spring-beans-2.5.xsd    使得从本地直接读取该配置文件


文章出处:http://blog.csdn.net/wengang285/article/details/7587264

0 0