如何在单个网关中使用多个队列

时间:2015-07-01 14:42:54

标签: spring spring-integration

我有多个队列,我想使用单个网关。我有默认频道。有没有一种简单的方法来定义多个队列源。

在这种情况下,“简单”被定义为运行时复杂性的简单性而不是配置。

1 个答案:

答案 0 :(得分:1)

看起来你需要RecipientListRouter

<int:recipient-list-router input-channel="routingChannel">
  <int:recipient channel="queue1"/>
  <int:recipient channel="queue2"/>
</int:recipient-list-router>