溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

詳解Spring加載Properties配置文件的四種方式

發(fā)布時(shí)間:2020-08-19 18:33:14 來(lái)源:腳本之家 閱讀:191 作者:HaHa_Sir 欄目:編程語(yǔ)言

一、通過(guò) context:property-placeholder 標(biāo)簽實(shí)現(xiàn)配置文件加載

1、用法示例: 在spring.xml配置文件中添加標(biāo)簽    

復(fù)制代碼 代碼如下:
<context:property-placeholder ignore-unresolvable="true" location="classpath:redis-key.properties"/> 

2、在 spring.xml 中使用配置文件屬性:

<!-- 基本屬性 url、user、password --> 
<property name="url" value="${jdbc.url}" /> 
<property name="username" value="${jdbc.username}" /> 
<property name="password" value="${jdbc.password}" /> 

3、在java文件中使用:

@Value("${jdbc_url}") 
ivate String jdbcUrl; // 注意:這里變量不能定義成static 

二、通過(guò) util:properties 標(biāo)簽實(shí)現(xiàn)配置文件加載

1、用法示例: 在spring.xml配置文件中添加標(biāo)簽 

復(fù)制代碼 代碼如下:
<util:properties id="util_Spring"  local-override="true" location="classpath:jeesite.properties"/>

2、在spring.xml 中使用配置文件屬性:

<property name="username" value="#{util_Spring['jdbc.username']}" /> 
<property name="password" value="#{util_Spring['jdbc.password']}" /> 

3、在java文件中使用:

@Value(value="#{util_Spring['UTIL_SERVICE_ONE']}") 
 private String UTIL_SERVICE_ONE; 

三、通過(guò) @PropertySource 注解實(shí)現(xiàn)配置文件加載

1、用法示例:在java類文件中使用 PropertySource 注解:

@PropertySource(value={"classpath:redis-key.properties"}) 
public class ReadProperties { 
@Value(value="${jdbc.username}") 
 private String USER_NAME; 
} 

2、在java文件中使用:

@Value(value="${jdbc.username}") 
 private String USER_NAME; 

四、通過(guò) PropertyPlaceholderConfigurer 類讀取配置文件

1、用法示例:在 spring.xml 中使用 <bean>標(biāo)簽進(jìn)行配置

<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> 
  <property name="locations"> 
   <list> 
    <value>classpath:redis-key.properties</value> 
   </list> 
  </property> 
  </bean> 

2、 PropertyPlaceholderConfigurer  配置方法,等價(jià)于 方式一,用法參考方法一。

五、 還可以使用  org.springframework.beans.factory.config.PropertiesFactoryBean  加載,這里不再逐一列舉了。

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI