如何在运行时实例化 Spring 托管 Bean?
我坚持从普通的Java到Spring的简单重构。应用程序有一个“容器”对象,该对象在运行时实例化其部分。让我用代码解释一下:
public class Container {
private List<RuntimeBean> runtimeBeans = new ArrayList<RuntimeBean>();
public void load() {
// repeated several times depending on external data/environment
RuntimeBean beanRuntime = createRuntimeBean();
runtimeBeans.add(beanRuntime);
}
public RuntimeBean createRuntimeBean() {
// should create bean which internally can have some
// spring annotations or in other words
// should be managed by spring
}
}
基本上,在装载容器期间,要求一些外部系统向他提供有关每个容器的数量和配置的信息,然后根据给定的规格创建豆子。RuntimeBean
问题是:通常当我们在春天做
ApplicationContext context = new AnnotationConfigApplicationContext(ApplicationConfiguration.class);
Container container = (Container) context.getBean("container");
我们的对象是完全配置的,并注入了所有依赖项。但在我的情况下,我必须实例化一些对象,这些对象在执行load()方法后也需要依赖注入。
我怎样才能做到这一点?
我正在使用基于Java的配置。我已经尝试过为以下方面做一个工厂:RuntimeBeans
public class BeanRuntimeFactory {
@Bean
public RuntimeBean createRuntimeBean() {
return new RuntimeBean();
}
}
期望在所谓的“精简”模式下工作。http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/context/annotation/Bean.html不幸的是,我发现简单地做新的运行时Bean()没有区别;这里有一个类似问题的帖子:如何管理FactoryBean Spring创建的豆子?@Bean
还有 http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/beans/factory/annotation/Configurable.html,但在我的情况下,它看起来像一把锤子。
我还尝试了AppplicationContext.getBean(“runtimeBean”,args),其中运行时Bean有一个“原型”范围,但getBean是一个糟糕的解决方案。
更新 1
更具体地说,我试图重构这个类:https://github.com/apache/lucene-solr/blob/trunk/solr/core/src/java/org/apache/solr/core/CoreContainer.java@see #load()方法并找到“return create(cd,false);”
更新 2
我在春季文档中发现了非常有趣的东西,称为“查找方法注入”:http://docs.spring.io/spring/docs/current/spring-framework-reference/html/beans.html#beans-factory-lookup-method-injection
还有一个有趣的jira票 https://jira.spring.io/browse/SPR-5192,Phil Webb说 https://jira.spring.io/browse/SPR-5192?focusedCommentId=86051&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-86051 应该在这里使用javax.inject.Provider(它提醒我Guice)。
更新 3
更新 4
所有这些“查找”方法的问题在于它们不支持传递任何参数。我还需要传递参数,就像我对app applicationContext.getBean(“runtimeBean”, arg1, arg2)所做的那样。看起来它在某些时候被修复了 https://jira.spring.io/browse/SPR-7431
更新 5
Google Guice有一个简洁的功能,称为AssistedInject。https://github.com/google/guice/wiki/AssistedInject