gpt4 book ai didi

java - Camel @BeanInject 在蓝图测试中不起作用

转载 作者:行者123 更新时间:2023-11-29 04:53:31 24 4
gpt4 key购买 nike

我正在尝试使用 CamelBlueprintTestSupport 来测试应用多个 bean 的 Camel 路线。在生产代码中,bean 在单独的蓝图 XML 中定义。在测试类中,我重写了 addServicesOnStartup 方法,就像记录的那样。我的单元测试类如下所示:

public class MyUnit_Test extends CamelBlueprintTestSupport {

@Override
protected String getBlueprintDescriptor() {
return "/OSGI-INF/blueprint/camel-routes.xml";
}

@Override
protected void addServicesOnStartup(Map<String, KeyValueHolder<Object, Dictionary>> services) {
services.put("beanA", asService(new BeanA(), null, null));
services.put("beanB", asService(new BeanB(), null, null));
}

@EndpointInject(uri = "mock:endpointMock")
private MockEndpoint endpointMoc;

@Test
public void test_myRoute() throws Exception {
(test code)
}
}

路由中引用了一个 bean (BeanA):

<camelContext>
<route>
...
<bean ref="beanA" method="myMethod" />
...
</route>
</camelContext>

这个需要访问另一个 bean (BeanB)。为此,我在 BeanA 中使用了 @BeanInject 注释:

public class BeanA {

@BeanInject("beanB")
private BeanB beanB;

public void myMethod(Exchange exchange) {
beanB.getSomething();
...
}

在生产环境中,依赖注入(inject)效果很好。

单元测试中的问题

在单元测试中BeanA可以被路由引用。但是在BeanA里面注入(inject)BeanB好像不行。当代码尝试访问 beanB 时,我在 BeanA.myMethod() 中收到 NPE。

依赖注入(inject)似乎只适用于蓝图 XML 中的路由,而不适用于递归注入(inject)的 bean 本身。

尝试

  • 我试图覆盖 CamelTestSupport 的 createRegistry 方法并通过这种方式添加我的 bean。但它没有用。事实上,我发现无论如何 CamelBlueprintTestSupport 启动时都不会调用 createRegistry

  • Camel documentation for Blueprint testing他们将 PojoSR 称为注册表框架。但我找不到更多示例或说明如何使用它来满足我的需要。

最佳答案

是的,这不是这样工作的。我的理解是,服务注册表 中的内容与蓝图上下文 中的 bean 不同。

Camel 将尝试使用(Camel,而非蓝图)注释@InjectBean 从上下文 Autowiring 其bean。但是 Camel 不会摆弄服务注册表中的东西;这些是现成的对象,可以按原样使用或通过代理使用。

所以你可以:

  • 将 beanA 视为一项服务;然后将其完全准备好(手动将 beanB 注入(inject)其中)并将其添加到服务注册表;
  • 为此修改您的 blueprint.xml,将 beanA 和 beanB 放入蓝图上下文(就像您在生产代码中所做的那样)。 (不过我知道你可能不想那样做。)

我们需要的是一个 CamelBlueprintTestSupport,它会考虑多个蓝图上下文,但据我所知这不可用。实际上,无法在 Blueprint 中导入上下文(与 Spring 相反。)

关于java - Camel @BeanInject 在蓝图测试中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34578957/

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