我的情况是我有一个属性文件来配置未知数量的bean:
rssfeed.source[0]=http://feed.com/rss-news.xml
rssfeed.title[0]=Sample feed #1
rssfeed.source[1]=http://feed.com/rss-news2.xml
rssfeed.title[1]=Sample feed #2
:
我有一个配置类来读取这些属性:
@Configuration
@EnableConfigurationProperties
@ConfigurationProperties(prefix = "rssfeed", locations = "classpath:/config/rssfeed.properties")
public class RssConfig {
private List<String> source = new ArrayList<String>();
private List<String> title = new ArrayList<String>();
public List<String> getSource() {
return source;
}
public List<String> getTitle() {
return title;
}
@PostConstruct
public void postConstruct() {
}
}
这很好用。但是,现在我想基于它创建bean。我到目前为止所尝试的是
添加@Bean
- 方法并从postConstruct()
@Bean
@Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
public SourcePollingChannelAdapter createFeedChannelAdapter(int id, String url) {
SourcePollingChannelAdapter channelAdapter = new SourcePollingChannelAdapter();
channelAdapter.setApplicationContext(applicationContext);
channelAdapter.setBeanName("feedChannelAdapter" + id);
channelAdapter.setSource(createMessageSource(id, url));
return channelAdapter;
}
@Bean
@Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
public FeedEntryMessageSource createMessageSource(int id, String url) {
try {
FeedEntryMessageSource messageSource = new FeedEntryMessageSource(new URL(url), "");
messageSource.setApplicationContext(applicationContext);
messageSource.setBeanName("feedChannelAdapter" + id + ".source");
return messageSource;
} catch (Throwable e) {
Utility.throwAsUncheckedException(e);
return null;
}
}
@Bean
@Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
public QueueChannel createFeedChannel(int id, String url) {
QueueChannel channel = new QueueChannel();
channel.setApplicationContext(applicationContext);
channel.setBeanName("feedChannel" + id);
return channel;
}
@PostConstruct
public void postConstruct() {
for (int x = 0; x < source.size(); x++) {
createFeedChannelAdapter(x, source.get(x));
}
}
但是,Spring会尝试将参数自动装配到这些方法,而不是使用我在postConstruct()
中提供的参数。
BeanFactoryPostProcessor
或BeanDefinitionRegistryPostProcessor
。但是,在这里,我无法访问上面的属性文件或RssConfig
- bean,因为它在生命周期中过早被调用。
我需要做什么才能生成那些动态数量的bean?我可能只是一小步......我更喜欢Java配置解决方案而不是XML解决方案。
答案 0 :(得分:2)
您需要注册bean定义(而不是调用@Bean
方法),因此BeanDefinitionRegistryPostProcessor
或ImportBeanDefinitionRegistrar
是目前最好的方法。您可以使用PropertiesConfigurationFactory
(在Spring Boot中)而不是使用@ConfigurationProperties
来获取属性文件并绑定到它,或者您可以使用父上下文或独立SpringApplication
来创建和绑定你的bean定义注册码中的RssConfig
。