gpt4 book ai didi

java - 创建 ApplicationContext 作为 Spring bean(通过其他应用程序上下文)

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:03:35 25 4
gpt4 key购买 nike

我如何在其他应用程序上下文中将一个 ApplicationContext 定义为原型(prototype) spring bean。我还需要将当前上下文作为父级传递给新的应用程序上下文。

详细信息:

我有 Bean,代表富客户端应用程序中的一个用户 session 。此类管理应用程序上下文的生命周期和一些其他对象(如数据库连接)。此 session bean 本身由特殊的“启动应用程序上下文”配置。

现在我想对这个 session bean 进行单元测试,但是遇到了麻烦,因为 session 特定的应用程序上下文在 session bean 中创建,并且有很多依赖于“启动上下文”;

示例代码:

public class UserDBAminSession implements ApplicationContextAware, UserSession {
ApplicationContext startupContext;
ApplicationContext sessionContext;

public void setApplicationContext(ApplicationContext startupContext) {...}

public void start() {
createSessionContext() ;
}

private void createSessionContext() {
sessionContext = new ClassPathXmlApplicationContext("admin-session.xml", startupContext);
}
}

出于测试目的,我想要使用类似这样的 relapse createSessionContext 函数代码:

sessionContext = startupContext.getBean("adminContext", ApplicationContext.class);

然后我可以创建 startupContext 的模拟,返回一些 stub 。甚至在未来的某个时候,DI“ session 上下文”到 spring bean。但是,我不知道如何将父上下文参数传递给 ClassPathXmlApplicationContext 构造函数。我正在尝试这样的事情,但它似乎不起作用:

<bean id="adminContext" class="org.springframework.context.support.ClassPathXmlApplicationContext"
scope="prototype" autowire="constructor">
<constructor-arg type="java.lang.String">
<value>admin-session.xml</value>
</constructor-arg>
</bean>

此外,我正在考虑在顶层创建应用程序上下文并通过 setter 传递它,但是:

  1. 这只是将问题移到更高级别,而不是解决问题。事实上它已经完成了(UserSession - 这是“顶级”)。
  2. 这打破了 RAII 模式。
  3. 这需要大量的代码重构。

或者制作特殊的“上下文工厂”对象,但已经不是最好的代码更难了。

看起来很愚蠢,我不能从 IoC 框架本身获取 IoC 对象。可能是我误读了一些 spring 文档?

任何其他想法,如何对这个类进行单元测试?

最佳答案

使用FactoryBeanApplicationContextAware 接口(interface)。

public class ChildApplicationContextFactoryBean implements FactoryBean, ApplicationContextAware {

protected String[] configLocations;

protected ApplicationContext applicationContext;

@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
this.applicationContext = applicationContext;
}

@Override
public Object getObject() throws Exception {
return new ClassPathXmlApplicationContext(configLocations, applicationContext);
}

@Override
public Class getObjectType() {
return ClassPathXmlApplicationContext.class;
}

@Override
public boolean isSingleton() {
return true;
}

public void setConfigLocations(String[] configLocations) {
this.configLocations = configLocations;
}

}

用法:

<bean class="com.skg.ecg.portal.operation.transit.ChildApplicationContextFactoryBean">
<property name="configLocations">
<list>
<value>applicationContext.xml</value>
</list>
</property>
</bean>

关于java - 创建 ApplicationContext 作为 Spring bean(通过其他应用程序上下文),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3303699/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com