我有一个FileSystemXmlApplicationContext
,我希望XML中定义的bean将构造函数参数作为未在Spring中声明的bean
例如,我想这样做:
<bean class="some.MyClass">
<constructor-arg ref="myBean" />
</bean>
所以我可以想象这样做:
Object myBean = ...
context = new FileSystemXmlApplicationContext(xmlFile);
context.addBean("myBean", myBean); //add myBean before processing
context.refresh();
除了没有这样的方法:-(有谁知道我怎么能做到这一点?
答案 0 :(得分:17)
如何以编程方式创建空父上下文,使用BeanFactory
返回getBeanFactory
实现的事实将对象注册为具有该上下文SingletonBeanRegistry
的单例。
parentContext = new ClassPathXmlApplicationContext();
parentContext.refresh(); //THIS IS REQUIRED
parentContext.getBeanFactory().registerSingleton("myBean", myBean)
然后将此上下文指定为“真实”上下文的父级。子上下文中的bean将能够引用父级中的bean。
String[] fs = new String[] { "/path/to/myfile.xml" }
appContext = new FileSystemXmlApplicationContext(fs, parentContext);
答案 1 :(得分:1)
由于我使用AnnotationConfigApplicationContext解决了这个问题,我找到了以下替代方案:
DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
beanFactory.registerSingleton("customBean", new CustomBean());
context = new AnnotationConfigApplicationContext(beanFactory);
context.register(ContextConfiguration.class);
context.refresh();
答案 2 :(得分:0)
如果现有上下文需要您希望注入的bean,则需要做一些不同的事情。其他答案中的方法由于以下原因而无效
这可以通过使用“ bean工厂后处理器”来解决,它允许在上下文加载后但刷新之前运行代码。
ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext();
applicationContext.setConfigLocation("/org/example/app-context.xml");
applicationContext.getBeanFactoryPostProcessors().add(new BeanFactoryPostProcessor() {
@Override
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
beanFactory.registerSingleton("customBeanName", customBean);
}
});
applicationContext.refresh();