如何在 JMS API 中指定具有相同交换的 qpid 队列?
我将以下示例作为
这里他们有一个交换器和一个队列。如何将消息发送到同一交换中的不同队列?如何在消息中指定路由信息?
我正在使用 java / JMS api
I am following example as
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用主题交换来传递消息。
消费者指定传出消息的路由密钥。
生产者使用绑定键将队列绑定到主题类型交换器。当然,您可以使用相同的绑定键将两个或多个队列绑定到一个主题交换器。
当带有路由密钥的消息到达代理时,主题交换器将根据路由密钥和绑定密钥之间的匹配来传递该消息。
以上就是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.