springboot注⼊property的三种⽅式(推荐)
spring怎么读取properties以前使⽤spring的使⽤要注⼊property要配置PropertyPlaceholder的bean对象。在springboot除了这种⽅式以外还可以通过制定配置ConfigurationProperties直接把property⽂件的属性映射到当前类⾥⾯。
@ConfigurationProperties(prefix = "mypro", merge = true, locations = { "classpath:my.properties" })
ConfigurationProperties prefix 属性指⽰property⽂件中属性的前缀是什么。我这⾥写的是mypro。
因此property⽂件的属性必须=z的形式;
配置好ConfigurationProperties 之后就可以把property⽂件的属性映射到当前类了。
mypro.a:1
mypro.b:2
abc.d:123
property ⽂件⾥⾯mypro前缀的有a 和b两个。因此我在当前类就可以新建这两个属性。
private int a;
private int b;
这些需要映射的属性⼀定要加上getter 和setter。因为spring是通过反射调⽤⽅法来修改属性值的
以前使⽤spring注⼊property的⽅式也同样适⽤。以前是xml配置PropertyPlaceholder。现在使⽤@bean 或者直接
@Component配置这个类。只要把PropertyPlaceholderConfigurer添加到bean⼯⼚,就可以使⽤@Value 取值了。
@Component
public class MyPropertyPlaceholderConfigurer extends PropertyPlaceholderConfigurer{
public MyPropertyPlaceholderConfigurer(){
this.setIgnoreResourceNotFound(true);
final List<Resource> resourceLst = new ArrayList<Resource>();
resourceLst.add(new ClassPathResource("my.properties"));
this.Array(new Resource[]{}));
}
}
@Value("abc.d")
private String test;
另外的⼀种⽅法跟第⼆种差不多的。更像以前的xml配置PropertyPlaceholder。只是现在的配置是⽤@Configuration标注的类,⽤@Bean标注要配置的bean对象;
@Configuration
public class Testproperties {
@Bean
public PropertyPlaceholderConfigurer properties(){
final PropertyPlaceholderConfigurer ppc = new PropertyPlaceholderConfigurer();
ppc.setIgnoreResourceNotFound(true);
final List<Resource> resourceLst = new ArrayList<Resource>();
resourceLst.add(new ClassPathResource("my.properties"));
ppc.Array(new Resource[]{}));
return ppc;
}
}
以上所述是⼩编给⼤家介绍的spring boot 注⼊ property的三种⽅式,希望对⼤家有所帮助,如果⼤家有任何疑问请给我留⾔,⼩编会及时回复⼤家的。在此也⾮常感谢⼤家对⽹站的⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论