詳解Spring Boot讀取配置文件與配置文件優(yōu)先級
Spring Boot讀取配置文件
1)通過注入ApplicationContext 或者 Environment對象來讀取配置文件里的配置信息。
package com.ivan.config.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.core.env.Environment;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class ConfigController {
@Autowired
ApplicationContext context;
@Autowired
Environment environment;
@RequestMapping(value="/config", method={RequestMethod.GET})
public String getConfigContent(){
String name = context.getEnvironment().getProperty("db.user.name");
return name;
}
@RequestMapping(value="/configEnv", method={RequestMethod.GET})
public String getConfigEnvironment(){
String name = environment.getProperty("db.user.name");
return name;
}
}
2)通過@ConfigurationProperties配合@PropertySource讀取配置文件里的配置信息。
1:通過@PropertySource指定當(dāng)前類里屬性的配置文件地址,ConfigurationProperties可以指定配置的前綴,@Configuration用于定義一個(gè)配置類:
package com.ivan.config.entity;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
@Configuration
@PropertySource("classpath:config/druid.properties")
@ConfigurationProperties(prefix = "druid")
public class DruidConfig {
private int initialSize;
private int minIdle;
private int maxActive;
private int maxWait;
private String validationQuery;
private boolean testWhileIdle;
private boolean testOnBorrow;
private boolean testOnReturn;
public int getInitialSize() {
return initialSize;
}
public void setInitialSize(int initialSize) {
this.initialSize = initialSize;
}
public int getMinIdle() {
return minIdle;
}
public void setMinIdle(int minIdle) {
this.minIdle = minIdle;
}
public int getMaxActive() {
return maxActive;
}
public void setMaxActive(int maxActive) {
this.maxActive = maxActive;
}
public int getMaxWait() {
return maxWait;
}
public void setMaxWait(int maxWait) {
this.maxWait = maxWait;
}
public String getValidationQuery() {
return validationQuery;
}
public void setValidationQuery(String validationQuery) {
this.validationQuery = validationQuery;
}
public boolean isTestWhileIdle() {
return testWhileIdle;
}
public void setTestWhileIdle(boolean testWhileIdle) {
this.testWhileIdle = testWhileIdle;
}
public boolean isTestOnBorrow() {
return testOnBorrow;
}
public void setTestOnBorrow(boolean testOnBorrow) {
this.testOnBorrow = testOnBorrow;
}
public boolean isTestOnReturn() {
return testOnReturn;
}
public void setTestOnReturn(boolean testOnReturn) {
this.testOnReturn = testOnReturn;
}
@Override
public String toString() {
return "DruidConfig [initialSize=" + initialSize + ", minIdle=" + minIdle + ", maxActive=" + maxActive + ", maxWait=" + maxWait + ", validationQuery=" + validationQuery + ", testWhileIdle=" + testWhileIdle + ", testOnBorrow=" + testOnBorrow + ", testOnReturn=" + testOnReturn + "]";
}
}
2:對應(yīng)的配置文件:
druid.initialSize=5 druid.minIdle=5 druid.maxActive=20 druid.maxWait=60000 druid.validationQuery=select 'x' druid.testWhileIdle=true druid.testOnBorrow=true druid.testOnReturn=true
3:在需要用到的類通過@Autowired注入
package com.ivan.config.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import com.ivan.config.entity.DruidConfig;
@RestController
public class DruidConfigController {
@Autowired
public DruidConfig druidConfig;
@RequestMapping(value="/druidConfig", method={RequestMethod.GET})
public String getDruidConfig(){
return druidConfig.toString();
}
}
3)通過@Value注解
1:需要得到配置屬性的類如下,可以在任何需要得到配置的地方用@Value注解
package com.ivan.config.entity;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
@Configuration
public class ValueTest {
@Value("${db.user.name}")
private String username;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
}
2:測試Controller類通過@Autowired注入實(shí)體類
package com.ivan.config.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import com.ivan.config.entity.ValueTest;
@RestController
public class ValueController {
@Autowired
private ValueTest value;
@RequestMapping(value="/configValue", method={RequestMethod.GET})
public String getConfig(){
return value.getUsername();
}
}
Spring boot 配置文件優(yōu)先級:
1:命令行參數(shù)。(以--開頭的參數(shù),比如可以設(shè)置:--server.port對同一套代碼設(shè)置不同的參數(shù))
2: 通過 System.getProperties() 獲取的 Java 系統(tǒng)參數(shù)。
3:操作系統(tǒng)環(huán)境變量(這解釋了為什么你通過application.properties設(shè)置的user.name取的是系統(tǒng)的用戶名了)
4:從 java:comp/env 得到的 JNDI 屬性。
5: 應(yīng)用 Jar 文件之外的屬性文件(系統(tǒng)的application.properties文件)
6:應(yīng)用 Jar 文件內(nèi)部的屬性文件。
7: 在應(yīng)用配置 Java 類(包含“@Configuration”注解的 Java 類)中通過“@PropertySource”注解聲明的屬性文件。
8: 通過“SpringApplication.setDefaultProperties”聲明的默認(rèn)屬性。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
SpringBoot項(xiàng)目導(dǎo)入aliyun oss starter依賴后啟動報(bào)錯(cuò)問題
這篇文章主要介紹了SpringBoot項(xiàng)目導(dǎo)入aliyun oss starter依賴后啟動報(bào)錯(cuò)問題及解決方案,具有很好的參考價(jià)值,希望對大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2024-01-01
Java高級用法中的JNA類型映射注意細(xì)節(jié)及使用問題
本文介紹了在使用JNA方法映射中應(yīng)該注意的一些細(xì)節(jié)和具體的使用問題,對java??JNA類型映射注意細(xì)節(jié)感興趣的朋友一起看看吧2022-04-04
Java實(shí)現(xiàn)bmp和jpeg圖片格式互轉(zhuǎn)
本文主要介紹了Java實(shí)現(xiàn)bmp和jpeg圖片格式互轉(zhuǎn),文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2023-04-04
java實(shí)現(xiàn)科學(xué)計(jì)算器的全過程與代碼
最近編寫了一個(gè)功能較全面的科學(xué)計(jì)算器,該計(jì)算器不僅能進(jìn)行加、減、乘、除等混合運(yùn)算,而且能計(jì)算sin、cos、tan、log等函數(shù)的值,還要具有清零、退格、求倒數(shù)、求相反數(shù)等功能,這篇文章主要給大家介紹了關(guān)于java實(shí)現(xiàn)科學(xué)計(jì)算器的相關(guān)資料,需要的朋友可以參考下2022-06-06
Java設(shè)計(jì)模式之狀態(tài)模式(State模式)介紹
這篇文章主要介紹了Java設(shè)計(jì)模式之狀態(tài)模式(State模式)介紹,本文講解了何時(shí)使用狀態(tài)模式、如何使用狀態(tài)模式等內(nèi)容,需要的朋友可以參考下2015-03-03
mybatis多個(gè)接口參數(shù)的注解使用方式(@Param)
這篇文章主要介紹了mybatis多個(gè)接口參數(shù)的注解使用方式(@Param),小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2018-10-10

