java - 在 Camel JUnit 中 Autowiring Spring Bean

标签 java spring junit apache-camel

我正在尝试将 Camel 与 Spring 5 集成(使用注释 - 没有 XML!),但我的 JUnit 测试遇到了一些问题。我能够在 JUnit 运行时启动 Camel,但我尝试在测试过程中调用的 Spring Controller 对象并未 Autowiring 。

我的 Junit 在下面;

public class ListCaseNotesTest extends CamelSpringTestSupport {

    @Override
    protected AbstractApplicationContext createApplicationContext() {
        AnnotationConfigApplicationContext acc = new AnnotationConfigApplicationContext();
        acc.register(CamelController.class);
        return acc;
    }

    @Autowired
    VisitsController visitsController;

    @Test
    public void testListCaseNotes() throws Exception{

        ListNotesKey listNotesKey = new ListNotesKey();
        listNotesKey.setUsername("caseworker");
        listNotesKey.setRelatedIDs("[\"1000\",\"1001\",\"1002\"]");
        listNotesKey.setRelatedType(ListNotesKey.RelatedTypeEnum.CASE);

        // invoke camel
        String response = visitsController.sendMessage("listCaseNotes", SOR_CONFIG, payload);

为了简洁起见,我省略了响应验证 - 调用 sendMessage 时收到的异常是 NullPointerException。完整日志如下;

Mar 01, 2018 3:53:04 PM org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker postProcessAfterInitialization
INFO: Bean 'visitsRouteBuilder' of type [com.me.camel.routes.VisitsRouteBuilder] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
Mar 01, 2018 3:53:04 PM org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker postProcessAfterInitialization
INFO: Bean 'camelController' of type [com.me.camel.CamelController$$EnhancerBySpringCGLIB$$4c13afa5] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
[                          main] SpringCamelContext             INFO  Apache Camel 2.20.2 (CamelContext: camel-1) is starting
[                          main] ManagedManagementStrategy      INFO  JMX is enabled
[                          main] DefaultTypeConverter           INFO  Type converters loaded (core: 192, classpath: 1)
[                          main] SpringCamelContext             INFO  StreamCaching is not in use. If using streams then its recommended to enable stream caching. See more details at http://camel.apache.org/stream-caching.html
[                          main] SpringCamelContext             INFO  Route: route1 started and consuming from: direct://visits
[                          main] SpringCamelContext             INFO  Total 1 routes, of which 1 are started
[                          main] SpringCamelContext             INFO  Apache Camel 2.20.2 (CamelContext: camel-1) started in 0.443 seconds
[                          main] ListCaseNotesTest              INFO  ********************************************************************************
[                          main] ListCaseNotesTest              INFO  Testing done: testListCaseNotes(com.me.test.notes.ListCaseNotesTest)
[                          main] ListCaseNotesTest              INFO  Took: 0.034 seconds (34 millis)
[                          main] ListCaseNotesTest              INFO  ********************************************************************************
[                          main] SpringCamelContext             INFO  Apache Camel 2.20.2 (CamelContext: camel-1) is shutting down
[                          main] DefaultShutdownStrategy        INFO  Starting to graceful shutdown 1 routes (timeout 10 seconds)
[el-1) thread #1 - ShutdownTask] DefaultShutdownStrategy        INFO  Route: route1 shutdown complete, was consuming from: direct://visits
[                          main] DefaultShutdownStrategy        INFO  Graceful shutdown of 1 routes completed in 0 seconds
Mar 01, 2018 3:53:05 PM org.springframework.context.annotation.AnnotationConfigApplicationContext doClose
INFO: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@e056f20: startup date [Thu Mar 01 15:53:04 EST 2018]; root of context hierarchy
Mar 01, 2018 3:53:05 PM org.springframework.context.support.DefaultLifecycleProcessor stop
INFO: Stopping beans in phase 2147483647
[                          main] SpringCamelContext             INFO  Apache Camel 2.20.2 (CamelContext: camel-1) uptime 0.496 seconds
[                          main] SpringCamelContext             INFO  Apache Camel 2.20.2 (CamelContext: camel-1) is shutdown in 0.017 seconds

java.lang.NullPointerException
    at com.me.test.notes.ListCaseNotesTest.testListCaseNotes(ListCaseNotesTest.java:70)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
    at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
    at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:55)
    at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:55)
    at org.junit.rules.RunRules.evaluate(RunRules.java:20)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
    at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
    at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
    at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
    at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
    at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
    at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)


Process finished with exit code -1

我需要做什么来设置 JUnit 测试以便成功 Autowiring Spring bean?

提前致谢!

比克

最佳答案

根据https://camel.apache.org/spring-testing.html CamelSpringTestSupport 不处理 Spring 注释。如果您坚持扩展它,您可以从 applicationContext 字段获取上下文并手动获取正确的 bean:

applicationContext.getBean(VisitsController.class).sendMessage("listCaseNotes", SOR_CONFIG, payload)

或者切换到Cammel运行器@RunWith(org.apache.camel.test.junit4.CamelSpringJUnit4ClassRunner)

关于java - 在 Camel JUnit 中 Autowiring Spring Bean,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49058575/

相关文章:

java - 想让 oauth2 的 perl 代码在 Java 中工作 "curl -H ' 授权 : Bearer:<TOKEN> https://canvas. instruct.com/api/v1";

java - 创建 View 时如何在 Liquibase 中指定列名?

java - 测试是否调用了另一个方法

java - 如何在 Java 应用程序中使用 Neo4j 的 cyper 查询

java - 在改造 1.9.0 中调用 api 时出错

java - Google Cloud Vision API - 如何启用服务帐户

java - 如何自定义 Spring Rest Controller 的 json 输出

java - HttpServletRequestWrapper 在 Spring 4 下不工作

Spring 社交/连接返回 404

java - @WebMvcTest 测试类中的 UnsatisfiedDependencyException