今天用eclipse 试配置Spring的applicationContext.xml的时候老是报解析出错“The processing instruction must begin with the name of the target”,看了几遍xml文件的内容也没发现什么特别,在网上搜了搜发现还是个通病,很多人都遇到过这种问题。其原因是
<? xml version = "1.0" encoding = "UTF-8" ?> 的问号和"xml"之间多了个空格,去掉空格后<?xml version = "1.0" encoding = "UTF-8" ?>就ok了。
<? xml version = "1.0" encoding = "UTF-8" ?> 的问号和"xml"之间多了个空格,去掉空格后<?xml version = "1.0" encoding = "UTF-8" ?>就ok了。
本文介绍了一种常见的Spring配置文件applicationContext.xml中的XML解析错误:“The processing instruction must begin with the name of the target”。问题源于XML声明中的空格错误,并提供了解决方案。
403

被折叠的 条评论
为什么被折叠?



