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

在启动Spring时,报以下错误,如图:

org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element 'beans'._第1张图片

原因是在xml中spring的xsd的版本配置的不一致,我使用的是spring-2.5.6,但配置文件中配的是3.0。改成如下即可:

<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> 

另外,配置时,要注意配置文件的编码;否则当编译时,输出的编码和你的配置文件的编码不一致时,会产生文件乱码。

你可能感兴趣的:(spring,xml,encoding)