spring-rabbit使用注意事項
阿新 • • 發佈:2019-01-07
先個一個地址看看,RabbitMQ 三種Exchange的關係
注意事項有以下幾點:
<bean id="rabbiTestTemplate" class="org.springframework.amqp.rabbit.core.RabbitTemplate" > <property name="connectionFactory" ref="rmq-connectionFactory"/> <property name="exchange" value="Test.topic"/> <property name="routingKey" value="Test.one"/> </bean>
<routingKey> 值如何與我們的佇列關聯?
1.當exchange為direct時
<rabbit:direct-exchange name="">
<rabbit:bindings>
<rabbit:binding pattern="Test.*" queue="Test.queue2" />
</rabbit:bindings>
</rabbit:direct-exchange>
bind queue只能有一個生效,所以建議這種模式下,直接將佇列名稱定義好,告訴對方.
2.當exchange為topict時,bind 中pattern可以使用表示式進行匹配<routingKey>的值,匹配上後,將訊息傳送到bind的佇列上.
<rabbit:topic-exchange name="commodiyTest.topic">
<rabbit:bindings>
<rabbit:binding pattern="Test.*" queue="Test.queue2" />
<rabbit:binding pattern="Test.one" queue="Test.queue1" />
</rabbit:bindings>
</rabbit:topic-exchange>
由於這種模式可以發生訊息給多個佇列,建議將routingKey告知對方,讓對方自己給佇列起名稱.這樣也滿足topic這種模式.
3.Fanout這種模式,他是將訊息進行廣播,所有的佇列都能夠收到.所以跟<routingKey>是無關的.