一般情況下,springboot默認會在resource目錄下生成一個配置文件(Application.properties或application.yaml),但其實springboot允許配置多個配置文件(application.properties或application.yaml),但是這并不意味著這些配置文件一定會替換默認生成的配置文件,它們是互補的存在。如果在某些場景下需要把配置文件單獨拿出來并且啟動的時候加載進去,那么外部的配置文件將是一個很好的選擇。
配置文件加載順序
需要注意的是配置文件加載順序加載順序在springboot 2.4.0前后是不一樣的。
- springboot 2.4.0及其之前版本的配置文件加載順序
file:./config/file:./config/*/file:./classpath:config/classpath:復制代碼
- springboot 2.4.0之后版本的配置文件加載順序
file:./config/*/file:./config/file:./classpath:config/classpath:復制代碼
區別在于springboot 2.4.0之后的版本將file:./config/*/的在順序調整為第一加載順序。
file是指當前jar包所在路徑。
classpath是指springboot resource文件夾下路徑。
驗證
前期準備
- 新建一個springboot項目
啟動類如下:
@SpringBootApplicationpublic class MqApplication {public static void main(String[] args) {ConfigurableApplicationContext applicationContext = SpringApplication.run(MqApplication.class, args);ConfigurableEnvironment environment = applicationContext.getEnvironment();String property = environment.getProperty("spring.application.name");System.out.println("current spring.application.name="+property);}}復制代碼
配置文件:
spring.application.name=classpathserver.port=8080復制代碼
為了驗證 springboot 2.4.0之前和之后的版本加載順序的不一樣,會使用兩個版本對比。 對比版本:springboot 2.4.3 和 springboot 2.3.5.RELEASE
下面是不同路徑下配置不同端口和應用名以便驗證。
路徑 |
端口號 |
application.name |
file:./config/*/ |
8084 |
file:./config/*/ |
file:./config/ |
8083 |
file:./config/ |
file:./ |
8082 |
file:./ |
classpath:config/ |
8081 |
classpath:config/ |
classpath: |
8080 |
classpath: |
驗證配置文件加載順序
根據上述表格,將配置文件分別復制到不同的路徑下創建配置文件并按表格修改spring.application.name和server.port屬性值。
啟動項目,下面是兩個版本的啟動信息:
從兩張圖中可以得出結論:
- springboot 2.4.0前后配置文件加載順序不一樣
- 高優先級的會覆蓋掉低優先級相同的屬性
驗證屬性互補
- 修改配置文件:
- classpath:配置文件
刪除spring.application.name屬性,增加server.error.path屬性
server.port=8080server.error.path=/test復制代碼
- file:./配置文件
新增server.servlet.context-path屬性
spring.application.name=file:.server.port=8082server.servlet.context-path=file_context復制代碼
- file:./config/*/配置文件
保持不變
server.port=8084spring.application.name=file:./config/*/復制代碼
- 修改啟動類main方法
在控制臺打印server.error.path
public static void main(String[] args) {ConfigurableApplicationContext applicationContext = SpringApplication.run(MqApplication.class, args);ConfigurableEnvironment environment = applicationContext.getEnvironment();String property = environment.getProperty("spring.application.name");System.out.println("current spring.application.name="+property);String errorPath = environment.getProperty("server.error.path");System.out.println("errorPath="+errorPath);}復制代碼
- 啟動項目
從上面截圖中可以發現三個配置文件中的所有屬性都被加載出來了,而且優先級高的配置文件中的屬性會覆蓋優先級低的配置文件中的屬性。
總結
springboot中可以配置多個配置文件,并且這些配置文件是可以共存的。當屬性相同時,優先級高的配置文件會覆蓋優先級低的配置文件中的屬性;當屬性不同時,最終的配置會取各個配置文件中屬性的并集。
作者:索碼理
鏈接:
https://juejin.cn/post/7126394308294344711
來源:稀土掘金
著作權歸作者所有。商業轉載請聯系作者獲得授權,非商業轉載請注明出處。