8

在 xml 上下文中使用 Spring,我们可以像这样简单地加载属性:

<context:property-placeholder location:"classpath*:app.properties"/>

有没有机会在没有样板的情况下在@Configuration bean(〜来自java代码)中配置相同的属性?

谢谢!

4

3 回答 3

11

@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;
 }
}

请参阅:http ://static.springsource.org/spring/docs/3.1.x/javadoc-api/org/springframework/context/annotation/PropertySource.html

编辑:如果您使用的是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/

于 2013-09-05T16:26:54.320 回答
7

手动配置可以通过以下代码完成

public static PropertySourcesPlaceholderConfigurer loadProperties(){
  PropertySourcesPlaceholderConfigurer propertySPC =
   new PropertySourcesPlaceholderConfigurer();
  Resource[] resources = new ClassPathResource[ ]
   { new ClassPathResource( "yourfilename.properties" ) };
  propertySPC .setLocations( resources );
  propertySPC .setIgnoreUnresolvablePlaceholders( true );
  return propertySPC ;
}

来源:属性占位符

于 2013-02-06T08:37:43.557 回答
0

一个简单的解决方案是您的 bean 还将包含一些 init 函数:

在你的 spring 配置中,你可能会提到它:

<bean id="TestBean" class="path to your class" init-method="init" singleton="false" lazy-init="true" >

init 将在所有属性通过 setter 设置后调用,在此方法中您可以覆盖已设置的属性,也可以设置任何属性。

于 2013-02-06T08:27:36.397 回答