我有一个 Camel 路由,可以将消息从队列中出列,将其发送到 bean 进行处理,然后将消息重新排入另一个队列。
我正在尝试消除第二个队列上的“重复消息”。Camel 是否有任何端点、处理器、EIP 等我可以配置为在发送到第二个队列之前在途中对消息进行重复数据删除?
例子:
<route id="myRoute">
<from uri="{{queue-1-uri}}" />
<to uri="bean:myBean?method=process" />
<!-- How to dedupe right here??? -->
<to uri="{{queue-2-uri}}" />
</route>
更新:也许是这样的:
<route id="myRoute">
<from uri="{{queue-1-uri}}" />
<to uri="bean:myBean?method=process" />
<filter>
<method>what goes here???</method>
<to uri="{{queue-2-uri}}" />
</filter>
</route>
根据 Ralf 的建议,我可以在其中引用一个 bean <method></method>
,然后使用缓存将消息保存在内存中。
假设这个新 bean 被调用FilterBean
并且它有一个dedupe()
方法:我如何在 Spring XML 中连接它,以及 bean 需要实现哪些类/接口才能从路由内部调用?