0

receiveChannel でメッセージを受信したら、サービスを呼び出して追加の作業を行いたいと思います。メッセージの流れは次のようになります。

JMS Message -> receiveChannel -- message-driven-adapter --> jmsInChannel -> queueChannel (here the service should be invoked)

1) queueChannel で呼び出されるサービス 2) またはメッセージアダプターを使用してこれを実現したいと思います。

後者の場合、Spring Integration でメッセージ駆動型アダプターにサービスを割り当てる方法がわかりませんか? また、サービスは呼び出されません。

この構成には両方のアプローチが含まれていますが、どちらも機能していません。

<int-jms:channel id="receiveChannel" 
    queue-name="FORWARD"
    connection-factory="connectionFactory" 
    auto-startup="true">
</int-jms:channel>

<si:channel id="jmsInChannel"/>
<int-jms:message-driven-channel-adapter id="messageDrivenAdapter"
    channel="receiveChannel" destination-name="jmsInChannel"/>
<si:bridge input-channel="jmsInChannel" output-channel="queueChannel"/> 

<si:channel id="queueChannel">
    <si:queue/>
</si:channel>


 <si:service-activator id ="activator" ref="messageService" 
    method="processMessage" 
    input-channel="queueChannel">
</si:service-activator>

そして、これはメッセージを FORWARD キューに送信する私の送信者です。

 <si:channel id="sendChannel"/>
<int-jms:outbound-channel-adapter 
connection-factory="connectionFactory" 
destination-name="FORWARD" 
channel="sendChannel"/>

<si:gateway id="forwardGateway" 
    service-interface="com.ucware.ucpo.forward.jms.MessageGateway" 
    default-request-channel="sendChannel"/>

メッセージは ActiveMQ バックエンドの FORWARD キューから来ています。

更新: リスナーを追加したところ、メッセージが受信されるようになりました。これは、TRACE がオンになっているログ ファイルです。

18.07.2013 15:52:16.036 [DirectChannel] [AbstractMessageChannel.java] [DEBUG] [main]
postSend (sent=true) on channel 'inputChannel', message: [Payload={FORWARD_ALL=3000, LINE=601}    
[Headers={timestamp=1374155536031, id=c2895e24-2260-4af8-9b23-a226ae95c31f,   
source=PRESENCE_ENGINE,userid=alice@tkb.local, type=FORWARD}]

18.07.2013 15:52:16.036 [ActiveMQMessageConsumer] [ActiveMQMessageConsumer.java] [TRACE] [org.springframework.jms.listener.DefaultMessageListenerContainer#1-1] ID:Lmiroslaw-PC-59127-1374155535776-1:1:1:1 **received message: MessageDispatch** {commandId = 0, responseRequired = false, consumerId = ID:Lmiroslaw-PC-59127-1374155535776-1:1:1:1, destination = queue://FORWARD, message = ActiveMQObjectMessage {commandId = 11, responseRequired = true, messageId = ID:Lmiroslaw-PC-59127-1374155535776-1:1:3:1:3, originalDestination = null, originalTransactionId = null, producerId = ID:Lmiroslaw-PC-59127-1374155535776-1:1:3:1, destination = queue://FORWARD, transactionId = null, expiration = 0, timestamp = 1374155536032, arrival = 0, brokerInTime = 1374155536013, brokerOutTime = 1374155536013, correlationId = null, replyTo = null, persistent = true, type = null, priority = 4, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = org.apache.activemq.util.ByteSequence@1bc4ec8, marshalledProperties = org.apache.activemq.util.ByteSequence@1d840d9, dataStructure = null, redeliveryCounter = 0, size = 0, properties = {timestamp=1374155536031, userid=alice@tkb.local, source=PRESENCE_ENGINE, type=FORWARD}, readOnlyProperties = true, readOnlyBody = true, droppable = false}, redeliveryCounter = 0}

18.07.2013 15:52:16.037 [DefaultMessageListenerContainer] [AbstractPollingMessageListenerContainer.java] [DEBUG] [org.springframework.jms.listener.DefaultMessageListenerContainer#1-1] **Received message of** type [class org.apache.activemq.command.ActiveMQObjectMessage] from consumer [Cached JMS MessageConsumer: ActiveMQMessageConsumer { value=ID:Lmiroslaw-PC-59127-1374155535776-1:1:1:1, started=true }] of session [Cached JMS Session: ActiveMQSession {id=ID:Lmiroslaw-PC-59127-1374155535776-1:1:1,started=true}]
4

1 に答える 1

1

<int-jms:channel/>フローの開始には使用されません。フローの途中でメッセージの永続性を提供するためのものです。

最初の 2 つの要素は必要ありません。メッセージ駆動型アダプターを構成するだけでdestination-name="FORWARD"、そのキューからメッセージを受信します。

また、削除しqueueChannelます。必要ありません。サービスはリスナー スレッドで呼び出されます。

message-driven-adapter->jmsInChannel->service-activator

于 2013-07-17T13:35:09.807 に答える