Cannot find the declaration of element 'beans'

2014-11-21 11:14:40,093 - ERROR ContextLoader.initWebApplicationContext:203 - Context initialization failed
org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 7 in XML document from class path resource [applicationContext-jms-activemq.xml] is invalid; nested exception is org.xml.sax.SAXParseException; lineNumber: 7; columnNumber: 121; cvc-elt.1: Cannot find the declaration of element 'beans'.
Caused by: org.xml.sax.SAXParseException; lineNumber: 7; columnNumber: 121; cvc-elt.1: Cannot find the declaration of element 'beans'.
at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)

此问题由于xml 文件中bean 版本无法对应spring.jar 包中的xsd 文件定义的版本,导致无法加载jar中的xsd ,spring就会去到官网加载, 但由于网络连接不通, 所以出现这个问题。

你可能感兴趣的:(element)