如何在 JMS API 中指定具有相同交换的 qpid 队列?

发布于 2024-12-29 18:39:06 字数 110 浏览 3 评论 0原文

我将以下示例作为

这里他们有一个交换器和一个队列。如何将消息发送到同一交换中的不同队列?如何在消息中指定路由信息?

我正在使用 java / JMS api

I am following example as

https://svn.apache.org/repos/asf/qpid/trunk/qpid/java/client/example/src/main/java/org/apache/qpid/example/Hello.java

Here they have one exchange and one queue. How to send message to different queue in same exchange ? How to specify routing information in message ?

I am using java / JMS api

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

记忆里有你的影子 2025-01-05 18:39:06

您可以使用主题交换来传递消息。
消费者指定传出消息的路由密钥。
生产者使用绑定键将队列绑定到主题类型交换器。当然,您可以使用相同的绑定键将两个或多个队列绑定到一个主题交换器。
当带有路由密钥的消息到达代理时,主题交换器将根据路由密钥和绑定密钥之间的匹配来传递该消息。

以上就是AMQP的基本原理。剩下的就是用Java方式实现你的代码了。

You can use topic exchange to deliver messages.
Consumer specifies routing key to a outgoing message.
Producer binds a queue to a topic type exchange with a binding key. Of course, you can bind two or more queues to one topic exchange with same binding key.
When a message with a routing key arrives in broker, the topic exchange will deliver it according to the match between routing key and binding key.

The above is the basic principle from AMQP. The rest is to implement your code in Java way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文