Spring中屬性檔案properties的讀取與使用
阿新 • • 發佈:2019-01-23
實際專案中,通常將一些可配置的定製資訊放到屬性檔案中(如資料庫連線資訊,郵件傳送配置資訊等),便於統一配置管理。例中將需配置的屬性資訊放在屬性檔案/WEB-INF/configInfo.properties中。
其中部分配置資訊(郵件傳送相關):
Java程式碼
在Spring容器啟動時,使用內建bean對屬性檔案資訊進行載入,在bean.xml中新增如下:
Xml程式碼
屬性資訊載入後其中一種使用方式是在其它bean定義中直接根據屬性資訊的key引用value,如郵件傳送器bean的配置如下:
Xml程式碼
另一種使用方式是在程式碼中獲取配置的屬性資訊,可定義一個javabean:ConfigInfo.java,利用註解將程式碼中需要使用的屬性資訊注入;如屬性檔案中有如下資訊需在程式碼中獲取使用:
Java程式碼
ConfigInfo.java 中對應程式碼:
Java程式碼
業務類bo中使用註解注入ConfigInfo物件:
Java程式碼
需在bean.xml中新增元件掃描器,用於註解方式的自動注入:
Xml程式碼
(3),spring配置檔案中要傳參給指定的Java類:com.rss.RssTimerTasks
這樣子,完全不用在Java程式碼中暴露醜陋的檔案路徑,不管多少個帶有路徑引數的方法,都可以直接使用一個引數代替指定的路徑。
通過get方法獲取對應的屬性資訊,優點是程式碼中使用方便,缺點是如果程式碼中需用到新的屬性資訊,需對ConfigInfo.java做相應的新增修改。
其中部分配置資訊(郵件傳送相關):
Java程式碼
- #郵件傳送的相關配置
- email.host = smtp.163.com
- email.port = xxx
- email.username = xxx
- email.password = xxx
- email.sendFrom = xxx@163.com
在Spring容器啟動時,使用內建bean對屬性檔案資訊進行載入,在bean.xml中新增如下:
Xml程式碼
- <!-- spring的屬性載入器,載入properties檔案中的屬性 -->
- <bean id="propertyConfigurer"
- class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
- <property name="location">
- <value>/WEB-INF/configInfo.properties</value>
-
</property
- <property name="fileEncoding" value="utf-8" />
- </bean>
屬性資訊載入後其中一種使用方式是在其它bean定義中直接根據屬性資訊的key引用value,如郵件傳送器bean的配置如下:
Xml程式碼
- <!-- 郵件傳送 -->
- <bean id="mailSender"
- class="org.springframework.mail.javamail.JavaMailSenderImpl">
-
<property
- <value>${email.host}</value>
- </property>
- <property name="port">
- <value>${email.port}</value>
- </property>
- <property name="username">
- <value>${email.username}</value>
- </property>
- <property name="password">
- <value>${email.password}</value>
- </property>
- <property name="javaMailProperties">
- <props>
- <prop key="mail.smtp.auth">true</prop>
- <prop key="sendFrom">${email.sendFrom}</prop>
- </props>
- </property>
- </bean>
另一種使用方式是在程式碼中獲取配置的屬性資訊,可定義一個javabean:ConfigInfo.java,利用註解將程式碼中需要使用的屬性資訊注入;如屬性檔案中有如下資訊需在程式碼中獲取使用:
Java程式碼
- #生成檔案的儲存路徑
- file.savePath = D:/test/
- #生成檔案的備份路徑,使用後將對應檔案移到該目錄
- file.backupPath = D:/test bak/
ConfigInfo.java 中對應程式碼:
Java程式碼
- @Component("configInfo")
- public class ConfigInfo {
- @Value("${file.savePath}")
- private String fileSavePath;
- @Value("${file.backupPath}")
- private String fileBakPath;
- public String getFileSavePath() {
- return fileSavePath;
- }
- public String getFileBakPath() {
- return fileBakPath;
- }
- }
業務類bo中使用註解注入ConfigInfo物件:
Java程式碼
- @Autowired
- private ConfigInfo configInfo;
需在bean.xml中新增元件掃描器,用於註解方式的自動注入:
Xml程式碼
- <context:component-scan base-package="com.my.model" />
第三種方法是:通過把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做相應的新增修改。