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

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

 

按照此方法解决了问题。

你可能感兴趣的:(org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element)