其他分享
首页 > 其他分享> > SpringBoot加载配置文件的顺序

SpringBoot加载配置文件的顺序

作者:互联网

配置文件路径的优先级:
我们从属性:DEFAULT_SEARCH_LOCATIONS = "classpath:/,classpath:/config/,file:./,file:./config/可以看出文件路径的先后顺序(注意:后加载的会覆盖先加载的):

classpath:/
classpath:/config/
file:./
file:./config/

 

我们从上面两张图中可以看出,每个Loader会加载两种后缀名的文件,加起来就是4种,又因为是数组类型,所以也会有先后顺序,所以加载配置文件的先后顺序就是(后加载覆盖先加载的):

标签:先后顺序,SpringBoot,配置文件,classpath,file,config,加载
来源: https://www.cnblogs.com/juniorMa/p/14350481.html