Spring 集成增加并行度
Spring integration increase parallelism
我有一个List<Object>
类型的消息,我想将它们按对象的一个属性进行分组,因此将列表拆分为子列表,然后并行处理所有子列表。在 spring-integration 中配置它的最佳方法是什么?谢谢。
并行处理 splitted
消息的最佳方式是将 ExecutorChannel
作为 <splitter>
组件的 output-channel
。
我有一个List<Object>
类型的消息,我想将它们按对象的一个属性进行分组,因此将列表拆分为子列表,然后并行处理所有子列表。在 spring-integration 中配置它的最佳方法是什么?谢谢。
并行处理 splitted
消息的最佳方式是将 ExecutorChannel
作为 <splitter>
组件的 output-channel
。