@PropertySource加载文件的两种用法以及配置文件加载顺序

Posted kelelipeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@PropertySource加载文件的两种用法以及配置文件加载顺序相关的知识,希望对你有一定的参考价值。

 

第一种:

现在我把资源文件的路径放在application.properties里

config.path=/home/myservice/config.properties

@PropertySource(value = {"file:${config.path}"}, encoding="utf-8")
public class MyConfig {
    @Value("${myconfig.index}")
    private String index;

    public String getIndex() {
       return index;
    }
}
配置文件中 配置文件是绝对路径时 用:file

第二种
@PropertySource("classpath:/document.properties")

public class MyConfig {
    @Value("${myconfig.index}")
    private String index;

    public String getIndex() {
       return index;
    }
}
classpath路径下就是可以用第二种方式

springboot 文件加载顺序 一般默认加载application.propertise 或者 application.yml文件
jar包目录下
1.config
2.jar同级目录
class目录下
3.config目录
4.class同级目录
相同属性 按照优先级最高的匹配

另外:可以在启动命令中 加入 --spring.config.location 指定文件地址 多个文件用 ","隔开

以上是关于@PropertySource加载文件的两种用法以及配置文件加载顺序的主要内容,如果未能解决你的问题,请参考以下文章

springboo加载resources下的任意文件

springboo加载resources下的任意文件

属性赋值-@PropertySource加载外部配置文件

Spring——15使用@PropertySource加载配置文件

从模块到python文件的两种用法

19属性赋值-@PropertySource加载外部配置文件