与春天DSL的Apache骆驼
我正在尝试使用Spring DSL在Apache Camel中运行一个简单的应用程序。 这是我的spring-config.xml
<bean id="jms" class="org.apache.camel.component.jms.JmsComponent">
<property name="connectionFactory">
<bean class="org.apache.activemq.ActiveMQConnectionFactory">
<property name="brokerURL" value="vm://localhost" />
</bean>
</property>
</bean>
<camelContext xmlns="http://camel.apache.org/schema/spring">
<route>
<from uri="file:src/data?noop=true" />
<process ref="downloadLogger" />
<to uri="jms:incomingOrders" />
</route>
</camelContext>
<bean id="downloadLogger" class="com.test.eip.camel.DownloadLogger"></bean>
这里是我的Java类进行测试:
public class CamelSpringTest {
public static void main(String[] args) throws Exception {
ApplicationContext appContext = new ClassPathXmlApplicationContext("spring-config.xml");
CamelContext camelContext = SpringCamelContext.springCamelContext(appContext, false);
try {
System.out.println("Hello");
camelContext.start();
} finally {
System.out.println("Hello2");
camelContext.stop();
}
}
}
我可以在控制台中看到Hello和hello2,但我的文件没有被移动。 我想我在创建骆驼上下文时做错了什么。 能否请你帮忙? 我是否需要明确添加路由到camelContext?
得到了解决方案。 我应该在上下文启动后写入Thread.sleep()。 即使在文件被拾取之前,骆驼环境也停止了。
为了测试你的路线,你应该使用http://camel.apache.org/testing.html。 这样你就不会陷入类似的问题。 此外,骆驼测试提供了许多助手,如断言,嘲笑,测试骆驼上下文。
对于一些开发人员来说,驼峰测试api可能会很麻烦,这就是为什么我开始开发一个小型库,希望能解决一些样板问题http://github.com/gmaslowski/camel-test-support
链接地址: http://www.djcxy.com/p/55009.html