0

我有弹簧集成管道,应该将消息发布到 ActiveMQ 主题。我正在尝试使用以下配置配置 de spring xml 文件

<bean id="myTopic" class="org.apache.activemq.command.ActiveMQTopic">
<constructor-arg value="topicMQ" />
</bean>


<si:channel id="myChannel" />
<jms:outbound-channel-adapter id="jmsOut" channel="myChannel" destination="myTopic" />

但消息未发布到主题。您知道如何配置 Spring 集成以将消息发布到 JMS 主题吗?我会期待你的答案。谢谢你,弗洛林

4

1 回答 1

1

我找到了这个解决方案:

  <bean id="myTopic" class="org.apache.activemq.command.ActiveMQTopic">
   <constructor-arg value="topicMQ" />
  </bean>

   <si:channel id="myChannel" />

  <jms:outbound-channel-adapter id="jmsOut"
   channel="myChannel" destination="myTopic"
   pub-sub-domain="true" delivery-persistent="true" time-to-live="600000" />

希望这会有所帮助!

于 2012-02-14T13:00:11.670 回答