SpringBoot启动时优先级加载bootstrap配置文件

  1. SpringBoot启动时默认加载bootstrap.properties或bootstrap.yml(这两个优先级最高)、application.properties或application.yml

  2. 如果我们配置了spring.profiles,同时会加载对应的application-{profile}.properties或application-{profile}.yml,profile为对应的环境变量,比如dev,如果没有配置,则会加载profile=default的配置文件

你可能感兴趣的:(SpringBoot,bootstrap,spring,boot,spring)