Spring IOC容器基於XML外部屬性文件的Bean管理

Spring IOC Bean管理XML

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

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

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

一、常規配置方法

1. 引入依賴

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

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

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容器Bean管理XML外部屬性文件的詳細內容,更多關於Spring IOC Bean管理XML的資料請關註WalkonNet其它相關文章!

推薦閱讀: