读取默认配置文件的值
springboot的默认配置文件有application.properties和application.yml,二选一即可,默认配置文件在springboot启动的时候会默认加载,而获取配置文件的值也非常方便,使用@Value和@Component注解即可
@Component
class A {
@Value("${xx.xx.xx}")
private String a;
@Value("${xx.xx.xx}")
private String b;
...
}
读取自定义配置文件的值
加入在src/main/resource目录中定义了一个kkk.properties文件,现在要读取文件属性值,通过@PropertySource注解找到自定义的资源文件
@Component
@PropertySource("classpath:kkk.properties")
class A {
@Value("${xx.xx.xx}")
private String a;
@Value("${xx.xx.xx}")
private String b;
...
}
通过注解@EnableConfigurationProperties或者@Component将有被@ConfigurationProperties注解修饰的类加载到spring容器之中,二选一
@Configuration
@PropertySource("classpath:kkk.properties")
@ConfigurationProperties(prefix="xxx")
class A {
private String a1;
private String a2;
private String a3;
}