我必须使用的一个库需要java.util.Properties
类型对象作为参数。我想从Spring中的属性文件中获取值。
因此,我的问题是 - 在Spring中,使用“Java Config”(无XML)来获取bean这样的对象的最佳方法是什么?
答案 0 :(得分:0)
你可以试试这个
class B1 {
B1(Properties props) {
//s
}
}
@Configuration
class Config {
@Bean
B1 b1() {
Properties props = new Properties();
// load...
return new B1(props);
}
...