骆驼:两条路线之间的通信

时间:2013-09-18 17:57:12

标签: apache-camel messaging mom

我基本上对骆驼不熟悉。我设置了一个带有两个使用seda端点的路由的camel上下文。 简单地说,一切都从一个“从”文件端点开始(对于错误的术语而言),在目录上监听:

<route>
    <from uri="file:mydir"/>
    <process ref="a bean that change the body of the message by setting a custom object"/>
    <to uri="seda:incoming"/>
</route>
<route>
    <from uri="seda:incoming"/>
    <process ref="a bean that does something with the custom object above"/>
    ....
</route>

现在,上面描述的工作完美但我需要用activemq队列更改seda,并且在这之后第二个处理器接收的消息正文为空。

如何使用activemq通道获得相同的seda端点行为?

1 个答案:

答案 0 :(得分:0)

  

exchange.getIn()。setBody(myCustomBean)

  

exchange.getIn()。setHeader(“inputfile”,aFileInstance)

如果您希望在从activemq队列中获取时获得一些结果,则应将可序列化对象发送到队列。否则对象将不会被转移。 在您的情况下,不能保证myCustomBean和aFileInstance是可序列化的。 基本上尝试将字符串发送到队列中。或者让你的对象可序列化。