我的日记
记录精彩的程序人生
我的日记
我的开源
我的开源
搜索
RSS
开始使用
目录
Spring Boot 中配置文件bootstrap 和 application的区别
2019-07-23
/
springboot
Spring Boot 中配置文件bootstrap 和 application的区别
Spring boot 配置文件如下
bootstrap(.yml 或者 properties)
application(.yml 或者 properties)
特性
bootstrap 由父ApplicationContext加载,比application优先加载
bootstrap里面的属性不能被覆盖
应用场景
application
自动化配置
bootstrap
bootstrap 配置文件中添加连接到配置中心的配置属性来加载外部配置中心的配置信息
一些固定的不能被覆盖的配置
一些加密/解密的场景
系统级别的一些参数配置
标题:Spring Boot 中配置文件bootstrap 和 application的区别
作者:
adongs
地址:
https://adongs.com/articles/2019/07/22/1563789226071.html
Spring boot 配置文件如下
特性
应用场景