欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring boot 添加自定义配置文件并读取属性

程序员文章站 2022-05-01 08:18:08
...

"123"
"pcq"

spring 属性文件默认配置文件是从application.properties读取的,

但是我想把配置文件分开,比如 业务的我想放在biz.properties, 客户端配置的放在client.properties ,

但是注入呢,经过测试可以这么做

比如

spring boot 添加自定义配置文件并读取属性

//多个配置文件
@PropertySource("classpath:biz.properties")
@Controller
public class UserService {
    //来自 application.properties
    @Value("${name}")
    private String name;
    //来自biz.properties
    @Value("${biz}")
    private String biz;
    @RequestMapping("/test")
    public void test(){
        System.out.println(biz);
        System.out.println(name);
    }
}

biz.properties 内容如下

biz="biz"
结果:

"123"
"pcq"