我有多个渠道的Spring Integration项目。我希望某些通道的输出将到达同一路由器。
例如,对于频道1,我有:
<int:chain input-channel="channel-1" output-channel="channel-1-out>
<int:service-activator ref="serviceA" method="doService" />
<int:service-activator ref="serviceB" method="doService" />
<int:service-activator ref="serviceC" method="doService" />
</int:chain>
<int:chain input-channel="channel-1-out">
<int:router>
<bean class="com.foo.MyClass" />
</int:router>
</int:chain>
对于通道2,我必须复制路由器类:
<int:chain input-channel="channel-2" output-channel="channel-2-out>
<int:service-activator ref="serviceD" method="doService" />
<int:service-activator ref="serviceE" method="doService" />
<int:service-activator ref="serviceF" method="doService" />
</int:chain>
<int:chain input-channel="channel-2-out">
<int:router>
<bean class="com.foo.MyClass" />
</int:router>
</int:chain>
问题在于,对于10个不同的通道,我必须编写10个不同的路由器,所有路由器均指向同一路由器类。对我来说,这似乎有些累赘,并且使ApplicationContext变得混乱。
有没有一种方法可以简单地将所需的输出添加到同一路由器?像
<int:chain input-channel=
"channel-1-out" +
"channel-2-out" +
"channel-3-out"....>
<int:router>
<bean class="com.foo.MyClass" />
</int:router>
</int:chain>
编辑:
简单的解决方案,将每个链的输出通道设置为路由器的输入通道。
<int:chain input-channel="channel-1" output-channel="router>
<int:service-activator ref="serviceA" method="doService" />
<int:service-activator ref="serviceB" method="doService" />
<int:service-activator ref="serviceC" method="doService" />
</int:chain>
<int:chain input-channel="channel-2" output-channel="router>
<int:service-activator ref="serviceD" method="doService" />
<int:service-activator ref="serviceE" method="doService" />
<int:service-activator ref="serviceF" method="doService" />
</int:chain>
<int:chain input-channel="router">
<int:router>
<bean class="com.foo.MyClass" />
</int:router>
</int:chain>
无需声明多个路由器
答案 0 :(得分:1)
当前不存在;但我们确实有一个开放的enhancement request。
也就是说,为什么需要声明多个路由器?只需声明一个,并将每个链的输出通道设置为其输入通道即可。