本文若有任何紕漏、錯誤,請不吝指正!html
PS: 以前寫過一篇關於
SpringBoo
中使用配置文件的一些姿式,不過嘛,有句話(我)說的好:曾見小橋流水,未睹觀音坐蓮!因此再寫一篇加強版,以便記錄。java
上一篇博客記錄,主要集中在具體的配置內容,也就是使用@ConfigurationProperties
這個註解來進行配置與結構化對象的綁定,雖然也順帶說了下@Value
的使用以及其區別。spring
在這篇記錄中,打算從總覽,鳥瞰的俯視視角,來從總體上對SpringBoot
,乃至Spring Framework
對於外部化配置文件處理,以及配置參數的綁定操做,是若是處理的、怎麼設計的。springboot
這裏其實主要說的是 SpringBoot
,雖然@Value
屬於Spring Framework
的註解,不過在SpringBoot
中也被頻繁使用。app
SpringBoot
版本: 2.2.6.RELEASE
ide
在SpringBoot
的啓動過程當中,大致上分爲三步spring-boot
第一步:prepareEnvironment
,準備SpringBoot
執行時全部的配置。post
第二步:prepareContext
,根據啓動時的傳入的配置類,建立其BeanDefinition
。測試
第三步:refreshContext
,真正啓動上下文。ui
在這上面三步中,第一步結束後,咱們所須要的或者配置文件配置的內容,大部分已經被加載進來,而後在第三步中進行配置的注入或者綁定操做。
至於爲何是大部分,後面會有解釋。
將配置從配置文件加載到Environment中,使用的是事件通知的方式。
本篇博客記錄僅僅聚焦第一步中如何讀取配置文件的分析,順帶介紹下第三步的注入和綁定。
受限於技術水平,僅能達到這個程度
若是有看到SpringBoot
官網關於外部化配置的說明,就會驚訝的發現,原來SpringBoot
有那麼多的配置來源。
SpringBoot
關於外部化配置特性的文檔說明,直達地址。
而實際使用中,一般可能會使用的比較多的是經過如下這些 方式
經過在啓動jar時,加上-DconfigKey=configValue
或者 --configKey=configValue
的方式,來進行配置,多個配置項用空格分隔。
這種使用場景也多,只是通常用於一些配置內容不多且比較關鍵的配置,好比說能夠決定運行環境的配置。
不易進行比較多的或者配置內容比較冗長的配置,容易出錯,且不便於維護管理。
這種是SpringBoot
提供的,用於簡便配置的一種方式,只要咱們將應用程序所用到的配置,直接寫到application.properties
中,並將文件放置於如下四個位置便可 。
jar
同目錄的config
目錄下的application.properties
jar
同目錄的application.properties
classpath
下的config
內application.properties
classpath
下的application.properties
以上配置文件類型也均可以使用yml
默認狀況下,這種方式是SpringBoot
約定好的一種方式,文件名必須爲application
,文件內容格式能夠爲Yaml
或者Properties
,也許支持XML
,由於看源碼是支持的,沒有實踐。
好處就是簡單,省心省事,咱們只需關注文件自己的內容就可,其餘的無需關心,這也是 SpringBoot
要追求的結果。
缺點也很明顯,若是配置內容比較冗長,爲了便於管理維護,增長可讀性,必需要對配置文件進行切分,經過功能等維度進行分類分組,使用多個配置文件來進行存放配置數據。
SpringBoot
也想到了這些問題,所以提供了下面兩個比較方便的使用方式,來應對這種狀況
profiles
自己是也是一個配置項,它提供一種方式將部分應用程序配置進行隔離,而且使得它僅在具體某一個環境中可用。
具體實踐中經常使用的主要是針對不一樣的環境,有開發環境用到的特有配置值,有測試環境特有的配置,有生產環境特有的配置,包括有些Bean
根據環境選擇決定是否進行實例化,這些都是經過profiles
來實現的。不過這裏只關注配置這一塊內容。
它的使用方式一般是spring.profiles.active=dev,dev1
或者 spring.profiles.include=db1,db2
這裏能夠看到有兩種不一樣的用法,這兩種方式是有區別的。
若是在application.properties
中定義了一個spring.profiles.active=dev
,然後在啓動時經過 命令行又寫了個 --spring.profiles.active=test
,那麼最終使用的是test
,而不是dev
。
若是一樣的場景下,使用spring.profiles.include
來替換spring.profiles.active
,那麼結果會是dev
和test
都會存在,而不是替換的行爲 。
這就是兩個之間的差異,這種差異也使得他們使用的場景並不同,active
更適合那些須要互斥的環境,而include
則是多個並存的配置。
僅僅配置了profiles
是沒有意義的,必需要有相應的配置文件配合一塊兒使用,並且這些配置文件的命名要符合必定的規則,不然配置文件不會被加載進Environment
的。
profiles
文件的命名規則爲application-*.properties
,一樣的,application.properties
能放置的位置它也能夠,不能的,它也不能夠。
註解@PropertySource
能夠寫在配置類上,而且指定要讀取的配置文件路徑,這個路徑能夠是絕對路徑,也能夠是相對路徑。
它能夠有如下幾種配置
@PropertySource("/config.properties")
@PropertySource("config.properties")
@PropertySource("file:/usr/local/config.properties")
@PropertySource("file:./config.properties")
@PropertySource("${pathPrefix}/config.properties")
其中1和2兩種方式是同樣的,都是從classpath
去開始查找的
3和4是使用文件系統的絕對和相對路徑的方式,這裏絕對路徑比較好理解 ,相對路徑則是從項目的根目錄做爲相對目錄的
5是結合SpEL
的表達式來使用的,能夠直接從環境中獲取配置好的路徑。
以上幾種方式在實際開發中遇到和SpringBoot
相關的配置,基本都能應付過來了。
不過對於上面配置的一些原理性的內容,尚未提到 ,下面會簡單說一下SpringBoot
關於配置更詳細的處理,以及配置的優先級的問題。
帶着問題去找緣由,比較有目的性和針對性,效果也相對好一些。
因此這裏描述幾個會引發疑問的現象
默認狀況下自動加載的配置文件命名必需要是application
在使用application.properties
時,能夠同時在四個位置放置配置,配置的優先級就是上面羅列時顯示的優先級。一樣的配置,優先級高的生效,優先級低的忽略。
profiles
引入的配置,也準守一樣的優先級規則
命令行配置具備最高優先級
有些配置不能使用@PropertySource
的方式進行注入,好比日誌的配置。
若是一個配置類使用了@ConfigurationProperties
,而後字段使用了@Value
,@ConfigurationProperties
先被處理,@Value
後被處理。
SpringBoot
讀取application.properties
配置
查看org.springframework.boot.context.config.ConfigFileApplicationListener
的源碼
public class ConfigFileApplicationListener implements EnvironmentPostProcessor, SmartApplicationListener, Ordered { // Note the order is from least to most specific (last one wins) // 默認檢索配置文件的路徑,優先級愈來愈高, // 能夠經過 spring.config.location從新指定,要早於當前類執行時配置好 private static final String DEFAULT_SEARCH_LOCATIONS = "classpath:/,classpath:/config/,file:./,file:./config/"; // 默認的配置名,能夠經過命令行配置--spring.config.name=xxx來從新指定 // 不經過命令行也能夠經過其餘方式,環境變量這些。 private static final String DEFAULT_NAMES = "application"; private class Loader { // 找到配置的路徑 private Set<String> getSearchLocations() { if (this.environment.containsProperty(CONFIG_LOCATION_PROPERTY)) { return getSearchLocations(CONFIG_LOCATION_PROPERTY); } Set<String> locations = getSearchLocations(CONFIG_ADDITIONAL_LOCATION_PROPERTY); locations.addAll( asResolvedSet(ConfigFileApplicationListener.this.searchLocations, DEFAULT_SEARCH_LOCATIONS)); return locations; } // 解析成Set private Set<String> asResolvedSet(String value, String fallback) { List<String> list = Arrays.asList(StringUtils.trimArrayElements(StringUtils.commaDelimitedListToStringArray( (value != null) ? this.environment.resolvePlaceholders(value) : fallback))); // 這裏會作一個反轉,也就是配置的路徑中,放在後面的優先級越高 Collections.reverse(list); return new LinkedHashSet<>(list); } private Set<String> getSearchNames() { if (this.environment.containsProperty(CONFIG_NAME_PROPERTY)) { String property = this.environment.getProperty(CONFIG_NAME_PROPERTY); return asResolvedSet(property, null); } return asResolvedSet(ConfigFileApplicationListener.this.names, DEFAULT_NAMES); } } }
命令行的配置具備最高優先級
protected void configurePropertySources(ConfigurableEnvironment environment, String[] args) { MutablePropertySources sources = environment.getPropertySources(); if (this.defaultProperties != null && !this.defaultProperties.isEmpty()) { sources.addLast(new MapPropertySource("defaultProperties", this.defaultProperties)); } // 支持從命令行添加屬性以及存在參數時 if (this.addCommandLineProperties && args.length > 0) { String name = CommandLinePropertySource.COMMAND_LINE_PROPERTY_SOURCE_NAME; // 這裏是看下是否是存在同名的配置了 if (sources.contains(name)) { PropertySource<?> source = sources.get(name); CompositePropertySource composite = new CompositePropertySource(name); composite.addPropertySource( new SimpleCommandLinePropertySource("springApplicationCommandLineArgs", args)); composite.addPropertySource(source); sources.replace(name, composite); } else { // 直接添加,而且是添加到第一個位置,具備最高優先級 sources.addFirst(new SimpleCommandLinePropertySource(args)); } } }
@PropertySource
是在refreshContext
階段,執行BeanDefinitionRegistryPostProcessor
時處理的
// org.springframework.context.annotation.ConfigurationClassParser#processPropertySource private void processPropertySource(AnnotationAttributes propertySource) throws IOException { String name = propertySource.getString("name"); if (!StringUtils.hasLength(name)) { name = null; } String encoding = propertySource.getString("encoding"); if (!StringUtils.hasLength(encoding)) { encoding = null; } // 獲取配置的文件路徑 String[] locations = propertySource.getStringArray("value"); Assert.isTrue(locations.length > 0, "At least one @PropertySource(value) location is required"); boolean ignoreResourceNotFound = propertySource.getBoolean("ignoreResourceNotFound"); // 指定的讀取配置文件的工廠 Class<? extends PropertySourceFactory> factoryClass = propertySource.getClass("factory"); // 沒有就用默認的 PropertySourceFactory factory = (factoryClass == PropertySourceFactory.class ? DEFAULT_PROPERTY_SOURCE_FACTORY : BeanUtils.instantiateClass(factoryClass)); // 循環加載 for (String location : locations) { try { // 會解析存在佔位符的狀況 String resolvedLocation = this.environment.resolveRequiredPlaceholders(location); // 使用DefaultResourceLoader來加載資源 Resource resource = this.resourceLoader.getResource(resolvedLocation); // 建立PropertySource對象 addPropertySource(factory.createPropertySource(name, new EncodedResource(resource, encoding))); } catch (IllegalArgumentException | FileNotFoundException | UnknownHostException ex) { // Placeholders not resolvable or resource not found when trying to open it if (ignoreResourceNotFound) { if (logger.isInfoEnabled()) { logger.info("Properties location [" + location + "] not resolvable: " + ex.getMessage()); } } else { throw ex; } } } }
由於執行時機的問題,有些配置不能使用@PropertySource
,由於這個時候對有些配置來講,若是使用這種配置方式,黃花菜都涼了。同時這個註解要配合@Configuration
註解一塊兒使用才能生效,使用@Component
是不行的。
處理@ConfigurationProperty
的處理器是一個BeanPostProcessor
,處理@Value
的也是一個BeanPostProcessor
,不過他倆的優先級並不同,
// @ConfigurationProperty public class ConfigurationPropertiesBindingPostProcessor implements BeanPostProcessor, PriorityOrdered, ApplicationContextAware, InitializingBean { @Override public int getOrder() { return Ordered.HIGHEST_PRECEDENCE + 1; } } // @Value public class AutowiredAnnotationBeanPostProcessor extends InstantiationAwareBeanPostProcessorAdapter implements MergedBeanDefinitionPostProcessor, PriorityOrdered, BeanFactoryAware { private int order = Ordered.LOWEST_PRECEDENCE - 2; @Override public int getOrder() { return this.order; } }
從上面能夠看出處理@ConfigurationProperty
的BeanPostProcessor
優先級很高,而@Value
的BeanPostProcessor
優先級很低。
使用@Value
注入時,要求配置的key
必須存在於Environment
中的,不然會終止啓動,而@ConfigurationProperties
則不會。
@Value
能夠支持SpEL
表達式,也支持佔位符的方式。
org.springframework.boot.context.config.ConfigFileApplicationListener
是一個監聽器,同時也是一個EnvironmentPostProcessor
,在有ApplicationEnvironmentPreparedEvent
事件觸發時,會去處理全部的EnvironmentPostProcessor
的實現類,同時這些個實現也是使用SpringFactoriesLoader
的方式來加載的。
對於配置文件的讀取,就是使用的這種方式。
@Override public void onApplicationEvent(ApplicationEvent event) { if (event instanceof ApplicationEnvironmentPreparedEvent) { onApplicationEnvironmentPreparedEvent((ApplicationEnvironmentPreparedEvent) event); } if (event instanceof ApplicationPreparedEvent) { onApplicationPreparedEvent(event); } } private void onApplicationEnvironmentPreparedEvent(ApplicationEnvironmentPreparedEvent event) { List<EnvironmentPostProcessor> postProcessors = loadPostProcessors(); postProcessors.add(this); AnnotationAwareOrderComparator.sort(postProcessors); for (EnvironmentPostProcessor postProcessor : postProcessors) { postProcessor.postProcessEnvironment(event.getEnvironment(), event.getSpringApplication()); } }
有了這個擴展點後,咱們就能本身定義讀取任何配置,從任何地方。
只要實現了EnvironmentPostProcessor
接口,而且在META-INF/spring.factories
中配置一下
org.springframework.boot.env.EnvironmentPostProcessor=com.example.configuration.ConfigurationFileLoader
附一個本身寫的例子
public class ConfigurationFileLoader implements EnvironmentPostProcessor { private static final String DEFAULT_SEARCH_LOCATIONS = "classpath:/,classpath:/config/,file:./,file:./config/"; private static final String DEFAULT_NAMES = "download"; private static final String DEFAULT_FILE_EXTENSION = ".yml"; @Override public void postProcessEnvironment (ConfigurableEnvironment environment, SpringApplication application) { List<String> list = Arrays.asList(StringUtils.trimArrayElements( StringUtils.commaDelimitedListToStringArray(DEFAULT_SEARCH_LOCATIONS))); Collections.reverse(list); Set<String> reversedLocationSet = new LinkedHashSet(list); ResourceLoader defaultResourceLoader = new DefaultResourceLoader(); YamlPropertiesFactoryBean yamlPropertiesFactoryBean = new YamlPropertiesFactoryBean(); List<Properties> loadedProperties = new ArrayList<>(2); reversedLocationSet.forEach(location->{ Resource resource = defaultResourceLoader.getResource(location + DEFAULT_NAMES+DEFAULT_FILE_EXTENSION); if (resource == null || !resource.exists()) { return; } yamlPropertiesFactoryBean.setResources(resource); Properties properties = yamlPropertiesFactoryBean.getObject(); loadedProperties.add(properties); }); Properties filteredProperties = new Properties(); Set<Object> addedKeys = new LinkedHashSet<>(); for (Properties propertySource : loadedProperties) { for (Object key : propertySource.keySet()) { String stringKey = (String) key; if (addedKeys.add(key)) { filteredProperties.setProperty(stringKey, propertySource.getProperty(stringKey)); } } } PropertiesPropertySource propertySources = new PropertiesPropertySource(DEFAULT_NAMES, filteredProperties); environment.getPropertySources().addLast(propertySources); } }
基本上都是 參考ConfigFileApplicationListener
寫的 ,不過這裏實現的功能,其實能夠經過 @PropertySource
來 解決,只是當時不知道。
使用@PropertySource
的話,這麼寫 @PropertySource("file:./download.properties")
便可。
我的猜想SpringBoot
從配置中心加載配置就是使用的這個方式,不過因爲沒有實際看過相關源碼確認,不敢說必定是的 ,可是應該是八九不離十 的 。
這篇記錄寫的有點亂,一個是涉及到東西感受也很多,還有就是自己有些地方不怎麼了解,花費的時間不夠。
不過對SpringBoot
的外部化配置來講,就是將各個途徑加載進來的配置,統一收歸Environment
的MutablePropertySources
字段,這個字段是一個ArrayList
,保持添加進來時的順序,所以查找也是按照這個順序查找,查找時查到即返回,不會徹底遍歷全部的配置,除非遇到不存在的。
整個設計思想就是使用集中全部的配置,進行優先級排序,最後在有須要獲取配置的地方,從Environment
對象中查找配置項。
對通常使用來講,關注點就是配置文件的位置,配置文件的名,以及優先級,這三個方面比較關心。
這篇記錄也基本能解答這幾個疑問,完成了寫這篇記錄的初衷。