我想为我的hornetq主题/队列配置转移。我正在使用JBoss 7
我在standalone.xml中配置我的HornetQ消息子系统
<subsystem xmlns="urn:jboss:domain:messaging:1.3">
<hornetq-server>
我也在这里配置队列和主题
<jms-queue name="topic1">
<entry name="queue/queue1"/>
<entry name="java:jboss/exported/jms/queue/queue1"/>
</jms-queue>
<jms-topic name="topic1">
<entry name="topic/topic1"/>
<entry name="java:jboss/exported/jms/topic/topic1"/>
</jms-topic>
我想配置一个转移...将主题转移到队列上,如下所示:
<!-- Attempting divert-->
<divert name="my-divert">
<address>jms.topic.topic1</address>
<forwarding-address>jms.queue.topic1</forwarding-address>
<exclusive>true</exclusive> </divert> -->
<!-- end divert-->
</hornetq-server>
如果我将它放在消息传递子系统中的stanalone.xml中,Jboss将不会在启动时解析它。我应该在哪里放置此配置 - 它可以存放在stanadalone.xml中吗?
由于
答案 0 :(得分:0)
我将转移放在子系统的错误部分,这可以通过使用jboss-cli运行以下命令轻松实现
/subsystem=messaging/hornetq-server=default/divert=my-divert:add(divert-address=jms.topic.topic1,forwarding-address=jms.queue.queue1,exclusive=true)