如果我有一个PropertyPlaceholderConfigurer
XML 文件,是否可以让我的 Spring@Configuration
使用它作为它处理的所有 bean 的属性源?
@Configuration
@ComponentScan(value = { "x.y.z })
@ImportResource({ "classpath:remote-properties/applicationContext.xml",})
public class CoreConfiguration implements TransactionManagementConfigurer {
@Resource(name = "com.c.h.c.PropertyPlaceholderConfigurer")
public PropertyPlaceholderConfigurer pp;
@Bean
public PropertyPlaceholderConfigurer propertiesFactoryBean() {
return pp;
}
}
有了以上内容,它永远不会在pp
. 如果我删除@Bean
and 方法,我可以验证它pp
是否已填充。那么我怎样才能将它注册到配置中呢?