SpringBoot 中配置文件的加载顺序是怎样的?

优先级从高到低,高优先级的配置覆盖低优先级的配置,所有配置会形成互补配置。
1.命令行参数。所有的配置都可以在命令行上进行指定;
2. Java 系统属性( System . getPropertiesO );
3.操作系统环境变量;
4. jar 包外部的 application -[ profile ). properties 或 application . yml (带 spring . profile )配置文件
5.jar包内部的 application -( profile ). properties 或 application . yml (带 spring . profile )配置文件再来加载不带 profile
6.jar包外部的 application . properties 或 application . yml (不带 spring . profile )配置文件
7.jar包内部的 application . properties 或 application . yml (不带 spring . profile )配置文件
8.@ Configuration 注解类上的@ PropertySource

你可能感兴趣的:(Spring,java,面试)