原文連接:http://blog.sina.com.cn/s/blog_4550f3ca0100ubmt.htmlhtml
1.有些參數在某些階段中是常量java
好比:a、在開發階段咱們鏈接數據庫時的鏈接url,username,password,driverClass等 mysql
b、分佈式應用中client端訪問server端所用的server地址,port,service等 spring
c、配置文件的位置sql
2.而這些參數在不一樣階段之間又每每須要改變數據庫
好比:在項目開發階段和交付階段數據庫的鏈接信息每每是不一樣的,分佈式應用也是一樣的狀況。分佈式
指望:能不能有一種解決方案能夠方便咱們在一個階段內不須要頻繁書寫一個參數的值,而在不一樣階段間又能夠方便的切換參數配置信息ide
解決:spring3中提供了一種簡便的方式就是context:property-placeholder/元素url
只須要在spring的配置文件裏添加一句:<context:property-placeholder location="classpath:jdbc.properties"/> 便可,這裏location值爲參數配置文件的位置,參數配置文件一般放在src目錄下,而參數配置文件的格式跟java通用的參數配置文件相同,即鍵值對的形式,例如:spa
#jdbc配置
test.jdbc.driverClassName=com.mysql.jdbc.Driver
test.jdbc.url=jdbc:mysql://localhost:3306/test
test.jdbc.username=root
test.jdbc.password=root
行內#號後面部分爲註釋
應用:
1.這樣一來就能夠爲spring配置的bean的屬性設置值了,好比spring有一個jdbc數據源的類DriverManagerDataSource
在配置文件裏這麼定義bean:
<bean id="testDataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" value="${test.jdbc.driverClassName}"/> <property name="url" value="${test.jdbc.url}"/> <property name="username" value="${test.jdbc.username}"/> <property name="password" value="${test.jdbc.password}"/> </bean>
2.甚至能夠將${ }這種形式的變量用在spring提供的註解當中,爲註解的屬性提供值
---------------------------------------------------------
外在化應用參數的配置
在開發企業應用期間,或者在將企業應用部署到生產環境時,應用依賴的不少參數信息每每須要調整,好比LDAP鏈接、RDBMS JDBC鏈接信息。對這類信息進行外在化管理顯得格外重要。PropertyPlaceholderConfigurer和PropertyOverrideConfigurer對象,它們正是擔負着外在化配置應用參數的重任。
<context:property-placeholder/>元素
PropertyPlaceholderConfigurer實現了BeanFactoryPostProcessor接口,它可以對<bean/>中的屬性值進行外在化管理。開發者能夠提供單獨的屬性文件來管理相關屬性。好比,存在以下屬性文件,摘自userinfo.properties。
db.username=scott
db.password=tiger
以下內容摘自propertyplaceholderconfigurer.xml。正常狀況下,在userInfo的定義中不會出現${db.username}、${db.password}等相似信息,這裏採用PropertyPlaceholderConfigurer管理username和password屬性的取值。DI容器實例化userInfo前,PropertyPlaceholderConfigurer會修改userInfo的元數據信息(<bean/>定義),它會用userinfo.properties中db.username對應的scott值替換${db.username}、db.password對應的tiger值替換${db.password}。最終,DI容器在實例化userInfo時,UserInfo便會獲得新的屬性值,而不是${db.username}、${db.password}等相似信息。
1 <bean id="propertyPlaceholderConfigurer" 2 class="org.springframework.beans.factory.config. 3 PropertyPlaceholderConfigurer"> 4 <property name="locations"> 5 <list> 6 <value>userinfo.properties</value> 7 </list> 8 </property> 9 </bean> 10 11 <bean name="userInfo" class="test.UserInfo"> 12 <property name="username" value="${db.username}"/> 13 <property name="password" value="${db.password}"/> 14 </bean>
經過運行並分析PropertyPlaceholderConfigurerDemo示例應用,開發者可以深刻理解PropertyPlaceholderConfigurer。爲簡化PropertyPlaceholderConfigurer的使用,Spring提供了<context:property-placeholder/>元素。下面給出了配置示例,啓用它後,開發者便不用配置PropertyPlaceholderConfigurer對象了。
<context:property-placeholder location="userinfo.properties"/>
PropertyPlaceholderConfigurer內置的功能很是豐富,若是它未找到${xxx}中定義的xxx鍵,它還會去JVM系統屬性(System.getProperty())和環境變量(System.getenv())中尋找。經過啓用systemPropertiesMode和searchSystemEnvironment屬性,開發者可以控制這一行爲。