本人使用的spring版本是spring-framework-4.0.0,在配置文件中使用util:property-path标签时,在配置文件的beans标签中添加xmlns:util="http://www.springframework.org/schema/util"字符片段以后运行程序,发现报如下错误:
Exception in thread "main" org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 39 in XML document from class path resource [bean.xml] is invalid; nested exception is org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'util:property-path'.
原因如下:
在Spring框架解压缩包的schema\util路径下包含有util:命名空间的XML Schema文件,为了使用util:命名空间的元素,必须在Spring配置文件中导入最新的spring-util-4.0.xsd,也就是需要在配置文件的beans标签的xsi:schemaLocation属性值中增加以下两行字符串即可。
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util-4.0.xsd