我们正处于应用程序的设计阶段。我们决定使用 Spring-Integration。作为起点,应用程序使用入站适配器从 JMS 队列中读取消息,入站适配器基于轮询和使用任务执行器的多线程。在对消息进行审计记录后,这些接收线程将消息放到通道上,工作线程从通道中拾取每条消息以进行进一步处理。进一步处理本身包括不同的组件,如消息解析、节点对象构建、预链接和链接。在步骤中,它包括用于消息保存和节点对象保存的接收器。这是根据以下配置。
<int-jms:inbound-channel-adapter jms-template="jmsTemplate" channel="channel1" id="MessageReceiver">
<int:poller fixed-delay="100" time-unit="MILLISECONDS" task-executor="taskExecutor"/>
</int-jms:inbound-channel-adapter>
<int:channel id="channel1">
<int:interceptors>
<int:wire-tap channel="channel.tbl_message"/>
</int:interceptors>
</int:channel>
<bean id="dataSource" destroy-method="close"
class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="${db.driverClassName}" />
<property name="url" value="${db.host.url}" />
<property name="username" value="${db.username}" />
<property name="password" value="${db.password}" />
</bean>
<int-jdbc:outbound-channel-adapter channel="channel.tbl_message" data-source="dataSource"
query="#{message.receiver.insert.query}" id="MessageLogger"></int-jdbc:outbound-channel-adapter>
<int:transformer input-channel="channel1" output-channel="channel2" method="parse" id="NodeBuilder">
<bean class="com.recon.parser.NodeBuilder"></bean>
</int:transformer>
<int:channel id="channel2"/>
<int:filter input-channel="channel3" output-channel="channel5"
discard-channel="channel4" method="validate" id="NodeValidator">
<bean class="com.recon.util.Validator"></bean>
</int:filter>
<int:channel id="channel3">
<int:interceptors>
<int:wire-tap channel="channel.tbl_node"/>
</int:interceptors>
</int:channel>
<int-jdbc:outbound-channel-adapter channel="channel.tbl_node" data-source="dataSource"
query="#{valid.node.insert.query}" id="ValidNodePersist"></int-jdbc:outbound-channel-adapter>
<int:channel id="channel4"/>
<int-jdbc:outbound-channel-adapter channel="channel4" data-source="dataSource"
query="#{validation.failure.insert.query}" id="FailedNodePersist"></int-jdbc:outbound-channel-adapter>
<int:transformer input-channel="channel2" output-channel="channel3" method="nodeEnricher" id="NodeEnricher">
<bean class="com.recon.processor.NodeEnricher"></bean>
</int:transformer>
<int:channel id="channel5"/>
<int:service-activator input-channel="channel5" id="LinkerManager">
<bean class="com.recon.manager.LinkerManager"></bean>
</int:service-activator>
现在我有两个选择:1)创建一个工作线程的线程池。每个工作线程将从节点处理器开始处理消息,节点处理器将以简单的 spring 依赖注入方式使用所有后续组件,而不使用 spring-integration。2)使用task-executor创建每个组件的线程池。每个组件的每个线程都会选择缓冲到其先前通道的输入对象。但是,这将创建许多线程,因为每个组件都将是多线程的。
任何人都可以就选择的方法提出一些解决方案吗?