1. 程式人生 > >Spring開發過程中遇到的錯誤集錦(持續更新)

Spring開發過程中遇到的錯誤集錦(持續更新)

(1)這個錯誤是由於xml檔案第一行多了一空行。

解決方法: 刪除xml檔案後的空行。

錯誤資訊:

org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 2 in XML document from class path resource [beans.xml] is invalid; nested exception is org.xml.sax.SAXParseException: The processing instruction target matching "[xX][mM][lL]" is not allowed.

(2) 這個錯誤是由於缺少了對 beans.ml 檔案中的元素 beans 的描述資訊。

解決方法: 百度(Google)一下,增加關於 beans 的描述資訊。

錯誤資訊:

org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 2 in XML document from class path resource [ beans.xml ] is invalid; nested exception is org.xml.sax.SAXParseException: cvc-elt.1:

Cannot find the declaration of element 'beans'.