在 xml 上下文中使用 Spring,我们可以像这样简单地加载属性:
<context:property-placeholder location:"classpath*:app.properties"/>
有没有机会在没有样板的情况下在@Configuration bean(〜来自java代码)中配置相同的属性?
谢谢!
@PropertySource
您可以像这样使用注释
@Configuration
@PropertySource(value="classpath*:app.properties")
public class AppConfig {
@Autowired
Environment env;
@Bean
public TestBean testBean() {
TestBean testBean = new TestBean();
testBean.setName(env.getProperty("testbean.name"));
return testBean;
}
}
编辑:如果您使用的是spring boot,您可以使用@ConfigurationProperties
注释将属性文件直接连接到bean属性,如下所示:
测试属性
name=John Doe
age=12
人属性.java
@Component
@PropertySource("classpath:test.properties")
@ConfigurationProperties
public class GlobalProperties {
private int age;
private String name;
//getters and setters
}
来源: https ://www.mkyong.com/spring-boot/spring-boot-configurationproperties-example/
手动配置可以通过以下代码完成
public static PropertySourcesPlaceholderConfigurer loadProperties(){
PropertySourcesPlaceholderConfigurer propertySPC =
new PropertySourcesPlaceholderConfigurer();
Resource[] resources = new ClassPathResource[ ]
{ new ClassPathResource( "yourfilename.properties" ) };
propertySPC .setLocations( resources );
propertySPC .setIgnoreUnresolvablePlaceholders( true );
return propertySPC ;
}
来源:属性占位符
一个简单的解决方案是您的 bean 还将包含一些 init 函数:
在你的 spring 配置中,你可能会提到它:
<bean id="TestBean" class="path to your class" init-method="init" singleton="false" lazy-init="true" >
init 将在所有属性通过 setter 设置后调用,在此方法中您可以覆盖已设置的属性,也可以设置任何属性。