Spring的PropertyPlaceholderConfigurer應用

Spring 利用PropertyPlaceholderConfigurer佔位符 java

1. PropertyPlaceholderConfigurer是個bean工廠後置處理器的實現,也就是BeanFactoryPostProcessor接口的一個實現。PropertyPlaceholderConfigurer能夠將上下文(配置文件)中的屬性值放在另外一個單獨的標準java Properties文件中去。在XML文件中用${key}替換指定的properties文件中的值。這樣的話,只須要對properties文件進行修改,而不用對xml配置文件進行修改。 mysql

2.在Spring中,使用PropertyPlaceholderConfigurer能夠在XML配置文件中加入外部屬性文件,固然也能夠指定外部文件的編碼,如: spring

<bean id="propertyConfigurer"class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">

    <property name="location">

        <value>conf/sqlmap/jdbc.properties</value>

    </property>

    <property name="fileEncoding">

        <value>UTF-8</value>

    </property>

</bean>

 固然也能夠引入多個屬性文件,如: sql

<bean id="propertyConfigurer"class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">

    <property name="locations">

        <list>

            <value>/WEB-INF/mail.properties</value>

            <value>classpath: conf/sqlmap/jdbc.properties</value>//注意這兩種value值的寫法

        </list>

    </property>

</bean>

 

3.譬如,jdbc.properties的內容爲: 數據庫

jdbc.driverClassName=com.mysql.jdbc.Driver apache

jdbc.url=jdbc:mysql://localhost/mysqldb?useUnicode=true&amp;characterEncoding=UTF-8&amp;zeroDateTimeBehavior=round; 工具

jdbc.username=root 編碼

jdbc.password=123456 url

4.那麼在spring配置文件中,咱們就能夠這樣寫: spa

<bean id="propertyConfigurer"class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">

    <property name="locations">

        <list>

            <value>classpath: conf/sqlmap/jdbc.properties </value>

        </list>

    </property>

</bean>

<bean id="dataSource"class="org.apache.commons.dbcp.BasicDataSource"destroy-method="close">

    <property name="driverClassName"value="${jdbc.driverClassName}" />

    <property name="url" value="${jdbc.url}" />

    <property name="username" value="${jdbc.username}"/>

    <property name="password"value="${jdbc.password}" />

</bean>

 

5.這樣,一個簡單的數據源就設置完畢了。能夠看出:PropertyPlaceholderConfigurer起的做用就是將佔位符指向的數據庫配置信息放在bean中定義的工具。

6.查看源代碼,能夠發現,locations屬性定義在PropertyPlaceholderConfigurer的祖父類PropertiesLoaderSupport中,而location只有 setter方法。相似於這樣的配置,在spring的源程序中很常見的。

PropertyPlaceholderConfigurer若是在指定的Properties文件中找不到你想使用的屬性,它還會在Java的System類屬性中查找。

咱們能夠經過System.setProperty(key, value)或者java中經過-Dnamevalue來給Spring配置文件傳遞參數。

相關文章
相關標籤/搜索