91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring?IOC容器基于XML外部屬性文件的Bean管理怎么配置

發布時間:2022-05-30 16:26:51 來源:億速云 閱讀:128 作者:iii 欄目:開發技術

本篇內容主要講解“Spring IOC容器基于XML外部屬性文件的Bean管理怎么配置”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Spring IOC容器基于XML外部屬性文件的Bean管理怎么配置”吧!

Spring IOC Bean管理XML

有時候,為了靈活方便,我們會把某些固定的數據存放到文件里,然后去讀取里面的內容來使用。

比如數據庫的連接信息,這些內容就可以放到 properties 文件中,然后使用 xml 配置文件去讀取里面的內容,完成需要的注入。

這里使用德魯伊連接池舉例,德魯伊連接池是阿里巴巴開源的數據庫連接池項目。

一、常規配置方法

1. 引入依賴

下載一個德魯伊的 jar 包,放到 lib 下面。

Spring?IOC容器基于XML外部屬性文件的Bean管理怎么配置

然后通過 File-Project Structure 添加這個 lib 下的jar包,應用。

Spring?IOC容器基于XML外部屬性文件的Bean管理怎么配置

2. xml 文件配置數據庫連接池
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
    <!--直接配置連接池-->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
        <property name="url" value="jdbc:mysql://localhost:3306/userDb"></property>
        <property name="username" value="root"></property>
        <property name="password" value="123456"></property>
    </bean>
</beans>

二、引入外部屬性文件來配置數據庫連接池

1. 創建外部文件

創建 properties 格式文件,寫入數據庫信息。

prop.driverClass=com.mysql.jdbc.Driver
prop.url=jdbc:mysql://localhost:3306/userDb
prop.username=root
prop.password=123456
2. 引入外部文件到xml配置文件中

把剛才創建的 properties 文件引入到 spring 的配置文件中來,通過使用名稱空間 context。

<?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.xsd">
    <!--引入外部屬性文件-->
    <context:property-placeholder location="classpath:jdbc.properties"/>
</beans>
3. 引用外部文件里的屬性

通過${}

<?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.xsd">
    <!--引入外部屬性文件-->
    <context:property-placeholder location="classpath:jdbc.properties"/>
    <!--配置連接池-->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="${prop.driverClass}"></property>
        <property name="url" value="${prop.url}"></property>
        <property name="username" value="${prop.username}"></property>
        <property name="password" value="${prop.password}"></property>
    </bean>
</beans>

到此,相信大家對“Spring IOC容器基于XML外部屬性文件的Bean管理怎么配置”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

吉木乃县| 资阳市| 基隆市| 西林县| 读书| 永顺县| 英山县| 紫阳县| 浦县| 嘉义县| 谢通门县| 浦城县| 南和县| 富顺县| 托里县| 灌南县| 贵德县| 大洼县| 惠安县| 新蔡县| 梓潼县| 内乡县| 济阳县| 阜南县| 宝坻区| 通州区| 南郑县| 双流县| 临城县| 抚松县| 宁河县| 澄迈县| 蒙自县| 霍州市| 临湘市| 峨边| 光山县| 洛川县| 安达市| 类乌齐县| 瑞安市|