Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在以下示例
https://svn.apache.org/repos/asf/qpid/trunk/qpid/java/client/example/src/main/java/org/apache/qpid/example/Hello.java
在这里,他们有一个交换和一个队列。如何将消息发送到同一交换中的不同队列?如何在消息中指定路由信息?
我正在使用 java / JMS api
您可以使用主题交换来传递消息。消费者指定传出消息的路由键。生产者使用绑定键将队列绑定到主题类型交换。当然,您可以使用相同的绑定键将两个或多个队列绑定到一个主题交换。当带有routing key的消息到达broker时,topic exchange会根据routing key和binding key的匹配进行投递。
以上就是来自AMQP的基本原理。剩下的就是用 Java 方式实现你的代码。