属性文件中类型为java.util.Properties的Spring bean

时间:2014-05-22 08:02:36

标签: java spring spring-java-config

我必须使用的一个库需要java.util.Properties类型对象作为参数。我想从Spring中的属性文件中获取值。

因此,我的问题是 - 在Spring中,使用“Java Config”(无XML)来获取bean这样的对象的最佳方法是什么?

1 个答案:

答案 0 :(得分:0)

你可以试试这个

class B1 {
    B1(Properties props) {
        //s
    }
}

@Configuration
class Config {

    @Bean
    B1 b1() {
        Properties props = new Properties();
        // load...
        return new B1(props);
    }

...