Artemis v2.17.0 和 Spring Boot 中的通配符路由问题
Problem with wildcard routing in Artemis v2.17.0 and Spring Boot
我在使用 Spring 引导 2.0.3.RELEASE 时遇到 ActiveMQ Artemis 2.17.0 的侦听器问题。
我使用 Spring Boot Artemis 依赖项通过以下方式向多个 queues 发送消息:
jmsTemplate.convertAndSend(destination, message)
我正在将消息发送到 3 个不同的队列:
- 队列。test1.event
- 队列。test2.event
- 队列。test2.event
在监听端,我使用通配符从所有队列中读取,例如:
@JmsListener(destination = "queue.#")
public void receiveMessage(String event) {
//....
}
但我什么也没得到。
Web 控制台显示我有 4 个队列(上面提到的 3 个和另一个 queue.#
)并且 WildcardRoutingEnabled
也设置为 true
。
This official Artemis documentation 解释了 Artemis 通配符模式,我正在关注它。不知道为什么不行。
PS:我之前在 ActiveMQ 中使用过 ActiveMQ 通配符模式,它与 Spring 启动 ActiveMQ 依赖项(使用此侦听器:@JmsListener(destination = "queue.>")
)
完美配合
我也在Wildcard routing not working in ActiveMQ Artemis上发表了评论,但由于原来的post已经旧了,所以我决定在这里重新post新的问题。如果我必须还原它,请告诉我。
我相信您看到了预期的行为。这是因为您使用的功能是 wildcard address。简而言之,发送到匹配地址的任何消息也将被路由到通配符地址(以及根据其语义(即任播或多播)绑定到该地址的任何队列)。
但是,我相信当您发送消息时还没有创建通配符地址(因为您还没有创建您的消费者)所以这些消息无法路由到它。
FWIW,您可以在 topic-hierarchies
示例中看到此功能的实际效果,该示例随代理一起提供在 examples/features/standard
目录中。
我在使用 Spring 引导 2.0.3.RELEASE 时遇到 ActiveMQ Artemis 2.17.0 的侦听器问题。 我使用 Spring Boot Artemis 依赖项通过以下方式向多个 queues 发送消息:
jmsTemplate.convertAndSend(destination, message)
我正在将消息发送到 3 个不同的队列:
- 队列。test1.event
- 队列。test2.event
- 队列。test2.event
在监听端,我使用通配符从所有队列中读取,例如:
@JmsListener(destination = "queue.#")
public void receiveMessage(String event) {
//....
}
但我什么也没得到。
Web 控制台显示我有 4 个队列(上面提到的 3 个和另一个 queue.#
)并且 WildcardRoutingEnabled
也设置为 true
。
This official Artemis documentation 解释了 Artemis 通配符模式,我正在关注它。不知道为什么不行。
PS:我之前在 ActiveMQ 中使用过 ActiveMQ 通配符模式,它与 Spring 启动 ActiveMQ 依赖项(使用此侦听器:@JmsListener(destination = "queue.>")
)
我也在Wildcard routing not working in ActiveMQ Artemis上发表了评论,但由于原来的post已经旧了,所以我决定在这里重新post新的问题。如果我必须还原它,请告诉我。
我相信您看到了预期的行为。这是因为您使用的功能是 wildcard address。简而言之,发送到匹配地址的任何消息也将被路由到通配符地址(以及根据其语义(即任播或多播)绑定到该地址的任何队列)。
但是,我相信当您发送消息时还没有创建通配符地址(因为您还没有创建您的消费者)所以这些消息无法路由到它。
FWIW,您可以在 topic-hierarchies
示例中看到此功能的实际效果,该示例随代理一起提供在 examples/features/standard
目录中。