Spring PropertyPlaceholderConfigurer範例


很多時候,大多數Spring開發人員只是把整個部署的詳細資訊(資料庫的詳細資訊,紀錄檔檔案的路徑)寫在XML bean組態檔案如下:
<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-2.5.xsd">

	<bean id="customerDAO" class="com.yiibai.customer.dao.impl.JdbcCustomerDAO">

		<property name="dataSource" ref="dataSource" />
	</bean>

	<bean id="customerSimpleDAO" class="com.yiibai.customer.dao.impl.SimpleJdbcCustomerDAO">

		<property name="dataSource" ref="dataSource" />
	</bean>

	<bean id="dataSource"
		class="org.springframework.jdbc.datasource.DriverManagerDataSource">

		<property name="driverClassName" value="com.mysql.jdbc.Driver" />
		<property name="url" value="jdbc:mysql://localhost:3306/yiibaijava" />
		<property name="username" value="root" />
		<property name="password" value="password" />
	</bean>

</beans>
但是,在企業環境中,部署的細節通常只可以由系統管理員或資料庫管理員來'觸碰',他們可能會拒絕直接存取你的bean的組態檔案,它們會要求部署組態一個單獨的檔案,例如,一個簡單的效能(properties)檔案,僅具有部署細節。

PropertyPlaceholderConfigurer範例

為了解決這個問題,可以使用 PropertyPlaceholderConfigurer 類通過一個特殊的格式在外部部署細節到一個屬性(properties )檔案,以及存取bean的組態檔案 – ${variable}.

建立一個屬性檔案(database.properties),包括資料庫的詳細資訊,把它放到你的專案類路徑。
jdbc.driverClassName=com.mysql.jdbc.Driver
	jdbc.url=jdbc:mysql://localhost:3306/yiibai_db
	jdbc.username=root
	jdbc.password=123456
在宣告bean組態檔案和提供一個PropertyPlaceholderConfigurer對映到 剛才建立的「database.properties」屬性檔案。
<bean 
		class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">

		<property name="location">
			<value>database.properties</value>
		</property>
	</bean>
完整的範例
<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-2.5.xsd">

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

		<property name="location">
			<value>database.properties</value>
		</property>
	</bean>

	<bean id="customerDAO" class="com.yiibai.customer.dao.impl.JdbcCustomerDAO">

		<property name="dataSource" ref="dataSource" />
	</bean>

	<bean id="customerSimpleDAO" 
                class="com.yiibai.customer.dao.impl.SimpleJdbcCustomerDAO">

		<property name="dataSource" ref="dataSource" />
	</bean>

	<bean id="dataSource"
		class="org.springframework.jdbc.datasource.DriverManagerDataSource">

		<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>

</beans>
可替代用法
還可以使用 PropertyPlaceholderConfigurer 於某個常數,分享給所有其他bean。例如,定義在一個屬性檔案中的紀錄檔檔案的位置,並通過  ${log.filepath} 存取不同的 bean 組態檔案的屬性值。