我创建了一个带有主题名称的消息,并使用键/值对设置了一些信息,并将消息发送到MessageBus(即,将消息生成到endPoint - 在我的案例中,端点是messageBus)。
如何使用该endPoint的消息?我知道uri,端点。需要为我的消费者做什么配置(任何camel XML更改要完成?)。
请帮忙。
答案 0 :(得分:0)
有关详细信息,请参阅camel-jms页面,但您基本上需要执行一些基本的Spring XML来配置ActiveMQ连接,然后建立您的路由......
from("activemq:queue:inboundQueue").bean(MyConsumerBean.class);
<bean id="activemq" class="org.apache.activemq.camel.component.ActiveMQComponent">
<property name="connectionFactory">
<bean class="org.apache.activemq.ActiveMQConnectionFactory">
<property name="brokerURL" value="vm://localhost?broker.persistent=false&broker.useJmx=false"/>
</bean>
</property>
</bean>
请参阅这些单元测试以获取更多信息......