java – 在从文件加载之前,如何将Bean注入到ApplicationContext中?

前端之家收集整理的这篇文章主要介绍了java – 在从文件加载之前,如何将Bean注入到ApplicationContext中?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个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();

除了没有这样的方法:-(有没有人知道我能如何实现?

解决方法

首先如何以编程方式创建一个空的父上下文,使用getbeanfactory返回一个SingletonBeanRegistry实现的事实,使用该上下文的beanfactory将对象注册为单例.
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);
原文链接:https://www.f2er.com/java/123646.html

猜你在找的Java相关文章