天天看点

Spring配置报错:通配符的匹配很全面,但无法找到元素‘util:map’的声明

最近在学习Spring的过程中遇到了一个错误,如下图所示

org.xml.sax.SAXParseException; lineNumber: 7; columnNumber: 54; SchemaLocation: schemaLocation 值 'http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd        http://www.springframework.org/schema/util ' 必须具有偶数个 URI。

org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 67 in XML document from class path resource [ioc2.xml] is invalid; nested exception is org.xml.sax.SAXParseException; lineNumber: 67; columnNumber: 26; cvc-complex-type.2.4.c: 通配符的匹配很全面, 但无法找到元素 'util:map' 的声明。

           
Spring配置报错:通配符的匹配很全面,但无法找到元素‘util:map’的声明

原因是没有正确的配置util的引用资源,在struts.xml文件中我们需要添加下面的配置

xmlns:util="http://www.springframework.org/schema/util"
  http://www.springframework.org/schema/util
  http://www.springframework.org/schema/util/spring-util-4.0.xsd"
           

最终效果图:

Spring配置报错:通配符的匹配很全面,但无法找到元素‘util:map’的声明