欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Cannot find the declaration of element 'beans'. 的解决方法 博客分类: WEB springbeans 

程序员文章站 2024-03-05 22:09:19
...
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
相关标签: spring beans