解決通配符的匹配很全面,但沒法找到元素'context:property-placeholder‘的聲明

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
                http://www.springframework.org/schema/beans/spring-beans.xsd">
    <!--配置整合mybatis過程-->
    <!--1:配置數據庫相關參數-->
    <context:property-placeholder location="classpath:jdbc.properties"/>

當開始的時候,spring-dao.xml文件中的頭部是這樣的時候,就會報:spring

通配符的匹配很全面,但沒法找到元素‘context:property-placeholder‘的聲明數據庫

這樣的錯誤,通過查閱資料和上網查後,發現是沒有在上面的配置文件中配置關於context的相關解析文件,故報此錯,當咱們在w文件的頭部添加解析文件以後以下:mybatis

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
                http://www.springframework.org/schema/beans/spring-beans.xsd
                http://www.springframework.org/schema/context
                http://www.springframework.org/schema/context/spring-context-4.2.xsd">
    <!--配置整合mybatis過程-->
    <!--1:配置數據庫相關參數-->
    <context:property-placeholder location="classpath:jdbc.properties"/>

如上紅色字體顯示的那樣,就會解決該問題。字體

相關文章
相關標籤/搜索