私は、アプリケーションの 1 つのメッセージング インターフェイスを開発中です。アプリケーションは、「ジョブ」を受け入れ、何らかの処理を行い、結果を (実際にはファイルの形式で) 返すように設計されたサービスです。
アイデアは、RabbitMQ をメッセージング インフラストラクチャとして使用し、Spring AMQP を使用してプロトコル固有の詳細を処理することです。
コードから Spring AMQP への密結合を望んでいないため、Spring Integration を使用してメッセージング API を隠したいと考えています。だから基本的に私はこれが欲しい:
RabbitMQ に送信されたメッセージ ====> Spring AMQP ====> Spring Integration ====> MyService ====> RabbitMQ に返信する
これを結び付けるために必要な XML 構成を考え出そうとしていますが、複数レベルの抽象化と異なる用語に問題があります。Spring AMQP/RabbitMQ の上で Spring Integration を実証する実用的な例を見つけることは、この種のセットアップが私にとって非常に「ベスト プラクティス」に感じられるという事実にもかかわらず、驚くほど難しいことが証明されています。
1) それで.. 優秀な魂がこれをざっと見て、おそらく私を正しい方向に押し進めることができますか? 何が必要で何が不要か? :-)
2) 理想的には、キューはマルチスレッド化する必要があります。つまり、taskExecutor は複数のメッセージを並列処理のために jobService に渡す必要があります。どのような構成が必要ですか?
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:util="http://www.springframework.org/schema/util"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:rabbit="http://www.springframework.org/schema/rabbit"
xmlns:int="http://www.springframework.org/schema/integration"
xmlns:int-amqp="http://www.springframework.org/schema/integration/amqp"
xmlns:int-stream="http://www.springframework.org/schema/integration/stream"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd
http://www.springframework.org/schema/rabbit http://www.springframework.org/schema/rabbit/spring-rabbit.xsd
http://www.springframework.org/schema/integration http://www.springframework.org/schema/integration/spring-integration.xsd
http://www.springframework.org/schema/integration/amqp http://www.springframework.org/schema/integration/amqp/spring-integration-amqp.xsd
http://www.springframework.org/schema/integration/stream http://www.springframework.org/schema/integration/stream/spring-integration-stream.xsd
">
<context:component-scan base-package="com.myprogram.etc" />
<!-- Messaging infrastructure: RabbitMQ -->
<bean id="connectionFactory" class="org.springframework.amqp.rabbit.connection.CachingConnectionFactory">
<constructor-arg value="${ei.messaging.amqp.servername}" />
<property name="username" value="${ei.messaging.amqp.username}" />
<property name="password" value="${ei.messaging.amqp.password}" />
</bean>
<rabbit:connection-factory id="connectionFactory" />
<rabbit:admin connection-factory="connectionFactory"/>
<!-- From RabbitMQ -->
<int-amqp:inbound-gateway request-channel="fromAMQP" reply-channel="toAMQP" queue-names="our-product-name-queue" connection-factory="connectionFactory"/>
<!-- Spring Integration configuration -->
<int:channel id="fromAMQP">
<!-- Is this necessary?? -->
<int:queue/>
</int:channel>
<!-- JobService is a @Service with a @ServiceActivator annotation -->
<int:service-activator input-channel="fromAMQP" ref="jobService"/>
</beans>