context:property-placeholder标签无效

公司老的springmvc项目加入mybatis多数据源的东西,mybatis.xml引入jdbc.properties,

报错:The matching wildcard is strict, but no declaration can be found for element  'context:property-placeholder'.

解决方法:

  1. 在文件头中引入:xmlns:context="http://www.springframework.org/schema/context"

  2. 在xsi:schemaLocation这个字符串中添加context相关的解析文件 
    http://www.springframework.org/schema/context 
    http://www.springframework.org/schema/context/spring-context-4.2.xsd。

你可能感兴趣的:(context:property-placeholder标签无效)