1. 程式人生 > >Spring中屬性檔案properties的讀取與使用

Spring中屬性檔案properties的讀取與使用

實際專案中,通常將一些可配置的定製資訊放到屬性檔案中(如資料庫連線資訊,郵件傳送配置資訊等),便於統一配置管理。例中將需配置的屬性資訊放在屬性檔案/WEB-INF/configInfo.properties中。 

其中部分配置資訊(郵件傳送相關): 
Java程式碼  收藏程式碼
  1. #郵件傳送的相關配置  
  2. email.host = smtp.163.com  
  3. email.port = xxx  
  4. email.username = xxx  
  5. email.password = xxx  
  6. email.sendFrom = xxx@163.com  

在Spring容器啟動時,使用內建bean對屬性檔案資訊進行載入,在bean.xml中新增如下: 

Xml程式碼  收藏程式碼
  1. <!-- spring的屬性載入器,載入properties檔案中的屬性 -->  
  2. <bean id="propertyConfigurer"  
  3.     class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
  4.     <property name="location">  
  5.         <value>/WEB-INF/configInfo.properties</value>  
  6.     </property
    >  
  7.     <property name="fileEncoding" value="utf-8" />  
  8. </bean>  

屬性資訊載入後其中一種使用方式是在其它bean定義中直接根據屬性資訊的key引用value,如郵件傳送器bean的配置如下: 
Xml程式碼  收藏程式碼
  1. <!-- 郵件傳送 -->  
  2.     <bean id="mailSender"  
  3.         class="org.springframework.mail.javamail.JavaMailSenderImpl">  
  4.         <property
     name="host">  
  5.             <value>${email.host}</value>  
  6.         </property>  
  7.         <property name="port">  
  8.             <value>${email.port}</value>  
  9.         </property>  
  10.         <property name="username">  
  11.             <value>${email.username}</value>  
  12.         </property>  
  13.         <property name="password">  
  14.             <value>${email.password}</value>  
  15.         </property>  
  16.         <property name="javaMailProperties">  
  17.             <props>  
  18.                 <prop key="mail.smtp.auth">true</prop>  
  19.                 <prop key="sendFrom">${email.sendFrom}</prop>  
  20.             </props>  
  21.         </property>  
  22.     </bean>  

另一種使用方式是在程式碼中獲取配置的屬性資訊,可定義一個javabean:ConfigInfo.java,利用註解將程式碼中需要使用的屬性資訊注入;如屬性檔案中有如下資訊需在程式碼中獲取使用: 
Java程式碼  收藏程式碼
  1. #生成檔案的儲存路徑  
  2. file.savePath = D:/test/  
  3. #生成檔案的備份路徑,使用後將對應檔案移到該目錄  
  4. file.backupPath = D:/test bak/  

ConfigInfo.java 中對應程式碼: 
Java程式碼  收藏程式碼
  1. @Component("configInfo")  
  2. public class ConfigInfo {  
  3.     @Value("${file.savePath}")  
  4.     private String fileSavePath;  
  5.     @Value("${file.backupPath}")  
  6.     private String fileBakPath;  
  7.     public String getFileSavePath() {  
  8.         return fileSavePath;  
  9.     }  
  10.     public String getFileBakPath() {  
  11.         return fileBakPath;  
  12.     }      
  13. }  

業務類bo中使用註解注入ConfigInfo物件: 
Java程式碼  收藏程式碼
  1. @Autowired  
  2. private ConfigInfo configInfo;  

需在bean.xml中新增元件掃描器,用於註解方式的自動注入: 
Xml程式碼  收藏程式碼
  1. <context:component-scan base-package="com.my.model" />  
(上述包model中包含了ConfigInfo類)。 

第三種方法是:通過把properties檔案配置在spring的propertyConfigure中後,通過bean來指定某個Java類然後把properties裡面某些內容作為引數傳給指定的那個Java類。程式碼如下:

(1),spring配置檔案:

<!-- 配置屬性檔案 -->
	<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  		<property name="location">
   			<value>classpath:jdbc.properties</value>
  		</property>
	</bean>
<!-- 從這個類中把屬性檔案某個內容引數傳進去給Java程式碼 -->
  	<bean id="Rss" class="com.rss.RssTimerTasks">
		<property name="path" value='${path}'/>
		<property name="top" value='${top}'/>
	</bean>

(2)jdbc.properties檔案:

jdbc.driverClass=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/test4

jdbc.username=root
jdbc.password=123456

pool.c3p0.acquire_increment=3
pool.c3p0.max_size=15
pool.c3p0.min_size=1
pool.c3p0.init_size=3

#(ms)
pool.c3p0.max_idel_time=60

#rss,log path
path=F\:\\jsp\\rss
#rss top
top=10
#path=D:\\hosts\\dukai100861671\\webapps\\ROOT

(3),spring配置檔案中要傳參給指定的Java類:com.rss.RssTimerTasks
<pre name="code" class="java">package com.rss;

import java.util.TimerTask;

import org.springframework.beans.factory.annotation.Autowired;

import com.server.AlbumServer;
import com.server.ArticleServer;

public class RssTimerTasks extends TimerTask{

	@Autowired ArticleServer articleServer;
	@Autowired AlbumServer albumServer;
	
	private String path;
	private int top;
	
	public void run() {
		RssAction rss=new RssAction();//生成rss
		try {
			rss.testBuildObject(articleServer.getLatestArticle(top),
								null,
								path);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	public void setPath(String path) {
		this.path = path;
	}

	public void setTop(int top) {
		this.top = top;
	}
	
}

這樣子,完全不用在Java程式碼中暴露醜陋的檔案路徑,不管多少個帶有路徑引數的方法,都可以直接使用一個引數代替指定的路徑。
通過get方法獲取對應的屬性資訊,優點是程式碼中使用方便,缺點是如果程式碼中需用到新的屬性資訊,需對ConfigInfo.java做相應的新增修改。