當前位置:
首頁 > 知識 > Spring Boot的properties配置文件讀取

Spring Boot的properties配置文件讀取

我在自己寫點東西玩的時候需要讀配置文件,又不想引包,於是打算扣點Spring Boot讀取配置文件的代碼出來,當然只是讀配置文件沒必要這麼麻煩,不過反正閑著也是閑著,扣著玩了。
具體啟動過程以前的博客寫過Spring Boot啟動過程(一),這次入口在SpringApplication類中:

private ConfigurableEnvironment prepareEnvironment(
SpringApplicationRunListeners listeners,
ApplicationArguments applicationArguments) {
// Create and configure the environment
ConfigurableEnvironment environment = getOrCreateEnvironment;
configureEnvironment(environment, applicationArguments.getSourceArgs);

//此處讀取 listeners.environmentPrepared(environment);
if (isWebEnvironment(environment) && this.webApplicationType == WebApplicationType.NONE) { environment = convertToStandardEnvironment(environment); } return environment; }

關於監聽器的過程在開頭說的那篇的一系列中也說的挺細的,這裡不介紹了:

Spring Boot的properties配置文件讀取

public void environmentPrepared(ConfigurableEnvironment environment) {
for (SpringApplicationRunListener listener : this.listeners) {
listener.environmentPrepared(environment);
}
}

EventPublishingRunListener:

Spring Boot的properties配置文件讀取

onApplicationEnvironmentPreparedEvent事件觸發orgspringframeworkootspring-boot2.0.0.BUILD-SNAPSHOTspring-boot-2.0.0.BUILD-20170421.122111-547-sources.jar!orgspringframeworkootcontextconfigConfigFileApplicationListener.java監聽器執行:

Spring Boot的properties配置文件讀取

Spring Boot的properties配置文件讀取

現在這個postProcessors中包含Json之類其他的監聽器,不過我現在只想扣出properties的代碼,別的先略過,反正其實也沒什麼,本來也是想看看它的思路,扣著玩,不要太在意。

protected void addPropertySources(ConfigurableEnvironment environment,
ResourceLoader resourceLoader) {
RandomValuePropertySource.addToEnvironment(environment);
new Loader(environment, resourceLoader).load;
}

Loader(ConfigurableEnvironment environment, ResourceLoader resourceLoader) {
this.environment = environment;
this.resourceLoader = resourceLoader == null ? new DefaultResourceLoader
: resourceLoader;
}

this.classLoader = ClassUtils.getDefaultClassLoader;
//其實也就是Thread.currentThread.getContextClassLoader;

下面就是真正載入了配置文件的load方法了,先是初始化PropertySourcesLoader和一些臨時的集合:

this.propertiesLoader = new PropertySourcesLoader;
this.activatedProfiles = false;
this.profiles = Collections.asLifoQueue(new LinkedList);
this.processedProfiles = new LinkedList<>;

// Pre-existing active profiles set via Environment.setActiveProfiles
// are additional profiles and config files are allowed to add more if
// they want to, so don"t call addActiveProfiles here.
Set initialActiveProfiles = initializeActiveProfiles;
this.profiles.addAll(getUnprocessedActiveProfiles(initialActiveProfiles));

這些集合其實如果沒配置Profile基本是沒用的,這東西現在已經很少用到了,這個環境當然是沒配的:

主要是下面這部分:

for (String location : getSearchLocations) {
if (!location.endsWith("/")) {
// location is a filename already, so don"t search for more
// filenames
load(location, null, profile);
}
else {
for (String name : getSearchNames) {
load(location, name, profile);
}
}
}

就是去指定目錄下去找各種以application為名字的指定類型的配置文件:

Spring Boot的properties配置文件讀取

我只關心application.properties,它是上面循環中的一次,走進了doLoadIntoGroup方法的下面那句:

private Map loadProperties(Resource resource) throws IOException {
String filename = resource.getFilename;
if (filename != null && filename.endsWith(XML_FILE_EXTENSION)) {
return (Map) PropertiesLoaderUtils.loadProperties(resource);
}
return new OriginTrackedPropertiesLoader(resource).load;
}

這個resource其實只是封裝了一下InputStream,具體的讀取。。。反正也沒啥特別的讀法:

Spring Boot的properties配置文件讀取

private void put(Map result, String key,
OriginTrackedValue value) {
if (!key.isEmpty) {
result.put(key, value);
}
}

以上。

==========================================================

咱最近用的github:https://github.com/saaavsaaa

喜歡這篇文章嗎?立刻分享出去讓更多人知道吧!

本站內容充實豐富,博大精深,小編精選每日熱門資訊,隨時更新,點擊「搶先收到最新資訊」瀏覽吧!


請您繼續閱讀更多來自 科技優家 的精彩文章:

一不小心,陷入TCP的性能問題
ZooKeeper分布式鎖淺談(一)
編寫基於TCP的應用程序
javascript痛點之一變數作用域

TAG:科技優家 |

您可能感興趣

Spring Boot 配置文件 yml與properties
Spring Boot學習筆記系列之Spring Boot配置文件屬性值校驗
Eclipse編輯Spring配置文件xml時自動提示類class包名
乾貨:詳解 Tomcat 配置文件 server.xml
Hibernate配置文件詳解-1
redis.conf配置文件詳解
SpringMVC工程的web.xml以及其他配置文件
Mybatis配置文件
python筆記14-讀取yaml配置文件
Creo/Preo軟體自學第二篇:部分配置文件在config中路徑的設置
剖析關於-ansible配置文件和命令中ad-hoc模式使用參數詳解
MyBatis配置文件詳解
快速自定義Cordova插件(-配置文件)
配置文件|logstash配置文件詳解
長話短說 pconf 配置文件
有黑客試圖將Windows 10 設置應用的配置文件武器化
Linux 中網路相關的那些配置文件
化繁為簡自行搭建你的Fabric網路:不可或缺的配置文件
MySQL-默認配置文件
Jenkins配置文件路徑改動導致管理員許可權開放漏洞