經過 spring 容器內建的 profile 功能實現開發環境、測試環境、生產環境配置自動切換

軟件開發的通常流程爲工程師開發 -> 測試 -> 上線,所以就涉及到三個不一樣的環境,開發環境、測試環境以及生產環境,一般這三個環境會有不少配置參數不一樣,例如數據源、文件路徑、url等,若是每次上線一個新版本時都手動修改配置會十分繁瑣,容易出錯。spring 爲咱們提供了 profile 機制來解決這個問題。


spring容許咱們經過定義 profile 來將若干不一樣的 bean 定義組織起來,從而實現不一樣環境自動激活不一樣的 profile 來切換配置參數的功能,下面介紹以 xml 的方式定義 profile、如何激活 profile以及定義默認的 profile,整個過程我以配置不一樣環境的數據源爲例,爲了簡化配置,這裏假設只有開發和生產兩個環境。


數據源定義爲

[html]  view plain  copy
  1. <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">  
  2.     <property name="user" value="${jdbc.user}" />   
  3.     <property name="password" value="${jdbc.password}" />   
  4.     <property name="jdbcUrl" value="${jdbc.jdbcUrl}" />     
  5.     <property name="driverClass" value="${jdbc.driverClass}" />  
  6.     <property name="initialPoolSize" value="${c3p0.initialPoolSize}"/>  
  7.     <property name="acquireIncrement" value="${c3p0.acquireIncrement}"/>  
  8.     <property name="minPoolSize" value="${c3p0.minPoolSize}"/>  
  9.     <property name="maxIdleTime" value="${c3p0.maxIdleTime}"/>  
  10.     <property name="idleConnectionTestPeriod" value="${c3p0.idleConnectionTestPeriod}" />  
  11.     <property name="preferredTestQuery" value="${c3p0.preferredTestQuery}"/>  
  12. </bean>  




classpath下外部資源文件有兩個 settings-development.properties 和 settings-production.properties,分別是開發環境和生產環境的數據源配置參數,內容以下


settings-development.properties
[html]  view plain  copy
  1. jdbc.user=root  
  2. jdbc.password=111111  
  3. jdbc.driverClass=com.mysql.jdbc.Driver  
  4. jdbc.jdbcUrl=jdbc:mysql://localhost:3306/xxx  
  5. c3p0.minPoolSize=5   
  6. c3p0.initialPoolSize=5  
  7. c3p0.acquireIncrement=5  
  8. c3p0.maxIdleTime=3600  
  9. c3p0.idleConnectionTestPeriod=3600  
  10. c3p0.preferredTestQuery=select 1  



settings-production.properties
[html]  view plain  copy
  1. jdbc.user=xxx  
  2. jdbc.password=xxxx  
  3. jdbc.driverClass=com.mysql.jdbc.Driver  
  4. jdbc.jdbcUrl=jdbc:mysql:///xxx  
  5. c3p0.minPoolSize=20   
  6. c3p0.initialPoolSize=20  
  7. c3p0.acquireIncrement=10  
  8. c3p0.maxIdleTime=3600  
  9. c3p0.idleConnectionTestPeriod=3600  
  10. c3p0.preferredTestQuery=select 1  





1. 定義 profile


如今就能夠經過定義 profile 來將開發和生產環境的數據源配置分開,這裏咱們定義兩個 profile,一個名稱是 development,另外一個名稱是 production
[html]  view plain  copy
  1. <!-- 開發環境配置文件 -->  
  2. <beans profile="development">  
  3.     <context:property-placeholder location="classpath:settings-development.properties"/>  
  4. </beans>  
  5.    
  6. <!-- 生產環境配置文件 -->  
  7. <beans profile="production">  
  8.     <context:property-placeholder location="classpath:settings-production.properties"/>  
  9. </beans>  





2. 定義默認 profile


默認 profile 是指在沒有任何 profile 被激活的狀況下,默認 profile 內定義的內容將被使用,一般能夠在 web.xml 中定義全局 servlet 上下文參數 spring.profiles.default 實現,代碼以下

[html]  view plain  copy
  1. <!-- 配置spring的默認profile -->  
  2. <context-param>  
  3.     <param-name>spring.profiles.default</param-name>  
  4.     <param-value>development</param-value>  
  5. </context-param>  




3. 激活 profile 


spring 爲咱們提供了大量的激活 profile 的方法,能夠經過代碼來激活,也能夠經過系統環境變量、JVM參數、servlet上下文參數來定義 spring.profiles.active 參數激活 profile,這裏咱們經過定義 JVM 參數實現。
在生產環境中,以 tomcat 爲例,咱們在 tomcat 的啓動腳本中加入如下 JVM 參數

[html]  view plain  copy
  1. -Dspring.profiles.active="production"
而開發環境中不須要定義該參數,若是不定義,則會使用咱們指定的默認 profile ,在這裏也就是名稱爲 development 的 profile。這樣當項目部署到不一樣的環境時,即可以經過 JVM 參數來實現不一樣環境 profile 自動激活。 4. 延伸 該參數還能夠延伸,以致於咱們能夠在 java 代碼中繼續經過該參數來區分不一樣的環境,從而執行不一樣的操做,代碼以下 public class Config {       public static String ENV = "development"; } public class InitConfigListener implements ServletContextListener {     public void contextInitialized(ServletContextEvent sce) {         //偵測jvm環境,並緩存到全局變量中         String env = System.getProperty("spring.profiles.active");         if(env == null) {             Config.ENV = "development";         } else {             Config.ENV = env;         }     } } 在項目初始化時獲取到該參數後,咱們即可以在項目任何位置使用,來執行一些不一樣環境須要區別對待的操做,例如統計流量的代碼只須要在生產環境激活,就能夠在jsp中加入以下代碼 <!-- 生產環境統計、推送代碼 --> <c:if test="${env == 'production' }"> <script> //統計代碼 .. </script> </c:if>
相關文章
相關標籤/搜索