读取applicationContext.xml报错

前端之家收集整理的这篇文章主要介绍了读取applicationContext.xml报错前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

错误日志:

Exceptioninthread"AWT-EventQueue-0"org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException:Line1inXMLdocumentfromfile[F:\茂名\UVIEW绘图\UVIEW绘图\applicationContext.xml]isinvalid;nestedexceptionisorg.xml.sax.SAXParseException;lineNumber:1;columnNumber:732;cvc-elt.1:找不到元素'beans'的声明



解决方案:

将程序内的applicationContext.xml打开

文件标题头如下

<?xmlversion="1.0"encoding="UTF-8"standalone="no"?><beansxmlns="http://www.springframework.org/schema/beans"xmlns:context="http://www.springframework.org/schema/context"xmlns:mongo="http://www.springframework.org/schema/data/mongo"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-3.0.xsdhttp://www.springframework.org/schema/data/mongohttp://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsdhttp://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-3.0.xsd">

将最后一行的http://www.springframework.org/schema/beans/spring-beans-3.0.xsd替换为

classpath:org/springframework/beans/factory/xml/spring-beans-3.0.xsd,其他不用动。保存文件,重新打开ChartEditForUVIEW.exe即可

原文链接:https://www.f2er.com/xml/295696.html

猜你在找的XML相关文章