springboot|springboot两种配置文件bootstrap.properties和application.properties的区别

前言
Springboot推荐使用JavaConfig而非XML配置,但是Sprintboot中也可以使用XML配置,通过@ImportResource注解可以引入一个XML配置。
bootstrap和application两种配置文件的区别
【springboot|springboot两种配置文件bootstrap.properties和application.properties的区别】单纯做Springboot开发,可能不太容易遇到bootstrap.properties配置文件,但是结合Spring Cloud时,这个配置就会经常遇到了,特别是在需要加载一些远程配置文件的时候。
1、bootstrap(.yml或者.properties):

  • bootstrap由父ApplicationContext加载的, 比application优先加载,配置在应用程序上下文的引导阶段生效。
  • bootstrap里面的属性不能被覆盖
  • 一般来说我们在Spring Cloud Config或者Nacos中会用到它。
2、application(.yml或者.properties):
  • 由ApplicationContext加载,
  • 用于Springboot项目的自动化配置

    推荐阅读