Spring 应用外部属性文件 配置 context 错误
Posted 梦_星_空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring 应用外部属性文件 配置 context 错误相关的知识,希望对你有一定的参考价值。
在Spring配置文件中出现通配符的匹配很全面, 但无法找到元素 ‘context:property-placeholder‘ 的声明这个错误,其实主要是我们在引入命名空间时没有正确引入它的DTD解析文件,当然你必须在把Spring相应的包导入正确的情况下。
解决方案就是如下:
xmlns:context="http://www.springframework.org/schema/context"
同时在xsi:schemaLocation这个字符串中添加context相关的解析文件
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.2.xsd。
其他的如util命名空间导入方式一样,只是把context换成相应util就可以了。
解决方案就是如下:
xmlns:context="http://www.springframework.org/schema/context"
同时在xsi:schemaLocation这个字符串中添加context相关的解析文件
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.2.xsd。
其他的如util命名空间导入方式一样,只是把context换成相应util就可以了。
以上是关于Spring 应用外部属性文件 配置 context 错误的主要内容,如果未能解决你的问题,请参考以下文章