Spring 中無處不在的 Properties

轉自:https://javadoop.com/post/spring-properties?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.iojava

 

Spring 中無處不在的 Properties

更新時間:2018-01-03mysql

對 Spring 裏面的 Properties 不理解的開發者可能會以爲有點亂,主要是由於配置方式不少種,使用方式也不少種。spring

本文不是原理分析、源碼分析文章,只是但願能夠幫助讀者更好地理解和使用 Spring Properties。sql

Properties 的使用

本文的讀者都是使用過 Spring 的,先來看看 Properties 是怎麼使用的,Spring 中經常使用的有如下幾種使用方式:shell

1. 在 xml 配置文件中使用

即自動替換 ${} 裏面的值。數據庫

<bean id="xxx" class="com.javadoop.Xxx"> <property name="url" value="${javadoop.jdbc.url}" /> </bean> 

2. 經過 @Value 注入使用

@Value("${javadoop.jdbc.url}") private String url; 

3. 經過 Environment 獲取

此法有須要注意的地方。並非全部的配置方式都支持經過 Environment 接口來獲取屬性值,親測只有使用註解 @PropertySource 的時候能夠用,不然會獲得 null,至於怎麼配置,下面立刻就會說。app

@Autowired private Environment env; public String getUrl() { return env.getProperty("javadoop.jdbc.url"); } 

若是是 Spring Boot 的 application.properties 註冊的,那也是能夠的。oop

Properties 配置

前面咱們說了怎麼使用咱們配置的 Properties,那麼該怎麼配置呢?Spring 提供了不少種配置方式。源碼分析

1. 經過 xml 配置

下面這個是最經常使用的配置方式了,不少項目都是這麼寫的:post

<context:property-placeholder location="classpath:sys.properties" /> 

2. 經過 @PropertySource 配置

前面的經過 xml 配置很是經常使用,可是若是你也有一種要消滅全部 xml 配置文件的衝動的話,你應該使用如下方式:

@PropertySource("classpath:sys.properties") @Configuration public class JavaDoopConfig { } 

注意一點,@PropertySource 在這裏必須搭配 @Configuration 來使用,具體不展開說了。

3. PropertyPlaceholderConfigurer

若是讀者見過這個,也沒必要以爲奇怪,在 Spring 3.1 以前,常常就是這麼使用的:

<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath:sys.properties</value> </list> </property> <property name="ignoreUnresolvablePlaceholders" value="true"/> <!-- 這裏能夠配置一些屬性 --> </bean> 

固然,咱們也能夠用相應的 java configuration 的版本:

@Bean public PropertyPlaceholderConfigurer propertiess() { PropertyPlaceholderConfigurer ppc = new PropertyPlaceholderConfigurer(); Resource[] resources = new ClassPathResource[]{new ClassPathResource("sys.properties")}; ppc.setLocations(resources); ppc.setIgnoreUnresolvablePlaceholders(true); return ppc; } 

4. PropertySourcesPlaceholderConfigurer

到了 Spring 3.1 的時候,引入了 PropertySourcesPlaceholderConfigurer,這是一個新的類,注意看和以前的 PropertyPlaceholderConfigurer 在名字上多了一個 Sources,所屬的包也不同,它在 Spring-Context 包中。

在配置上卻是沒有什麼區別:

<bean class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath:sys.properties</value> </list> </property> <property name="ignoreUnresolvablePlaceholders" value="true"/> <!-- 這裏能夠配置一些屬性 --> </bean> 

也來一個 java configuration 版本吧:

@Bean public PropertySourcesPlaceholderConfigurer properties() { PropertySourcesPlaceholderConfigurer pspc = new PropertySourcesPlaceholderConfigurer(); Resource[] resources = new ClassPathResource[]{new ClassPathResource("sys.properties")}; pspc.setLocations(resources); pspc.setIgnoreUnresolvablePlaceholders(true); return pspc; } 

Spring Boot 相關

Spring Boot 真的是好東西,開箱即用的感受實在是太好了。這裏簡單介紹下相關的內容。

快速生成一個 Spring Boot 項目:https://start.spring.io/

application.properties

咱們每一個項目都默認有一個 application.properties 文件,這個配置文件不須要像前面說的那樣進行註冊,Spring Boot 會幫咱們自動註冊。

固然,也許你想換個名字也是能夠的,在啓動的時候指定你的文件名字就能夠了:

java -Dspring.config.location=classpath:sys.properties -jar app.jar

application-{env}.properties

爲了給不一樣的環境指定不一樣的配置,咱們會用到這個。

好比測試環境和生產環境的數據庫鏈接信息就不同。

因此,在 application.properties 的基礎上,咱們還須要新建 application-dev.properties 和 application-prd.properties,用於配置環境相關的信息,而後啓動的時候指定環境。

java -Dspring.profiles.active=prd -jar app.jar

結果就是,application.properties 和 application-prd.properties 兩個文件中的配置都會註冊進去,若是有重複的 key,application-prd.properties 文件中的優先級較高。

@ConfigurationProperties

這個註解是 Spring Boot 中才有的。

即便你們不使用這個註解,你們也可能會在開源項目中看到這個,這裏簡單介紹下。

來一個例子直觀一些。按照以前說的,在配置文件中填入下面的信息,你能夠選擇寫入 application.properties 也能夠用第一節介紹的方法。

javadoop.database.url=jdbc:mysql:
javadoop.database.username=admin
javadoop.database.password=admin123456

java 文件:

@Configuration @ConfigurationProperties(prefix = "javadoop.database") public class DataBase { String url; String username; String password; // getters and setters } 

這樣,就在 Spring 的容器中就自動註冊了一個類型爲 DataBase 的 bean 了,並且屬性都已經 set 好了。

在啓動過程當中動態修改屬性值

這個我以爲都不須要太多介紹,用 Spring Boot 的應該基本上都知道。

屬性配置有個覆蓋順序,也就是當出現相同的 key 的時候,以哪裏的值爲準。

啓動參數 > application-{env}.properties > application.properties

啓動參數動態設置屬性:

java -Djavadoop.database.password=admin4321 -jar app.jar

另外,還能夠利用系統環境變量設置屬性,還能夠指定隨機數等等,確實很靈活,不過沒什麼用,就不介紹了。

總結

讀者若是想要更加深刻地瞭解 Spring 的 Properties,須要去理解 Spring 的 Environment 接口相關的源碼。建議感興趣的讀者去翻翻源代碼看看

(全文完)

相關文章
相關標籤/搜索