Exchange、Queue与Routing Key三个概念是理解RabbitMQ消息投递的关键。RabbitMQ中一个核心的原则是,消息不能直接投递到Queue中。Producer只能将自己的消息投递到Exchange中,由Exchange按照routing_key投递到对应的Queue中,具体的架构参见下图。
那么,具体实现时,如何完成这三者关系的绑定?总结起来是两点:第一,在Consumer Worker中,声明自己对哪个Exchange感兴趣,并将自己的Queue绑定到自己感兴趣的一组routing_key上,建立相应的映射关系;第二,在Producer中,将消息投递一个Exchange中,并指明它的routing_key。由此可见,Queue这个概念只是对Consumer可见,Producer并不关心消息被投递到哪个Queue中。
搞清楚上述概念,就不难理解Exchange的四种类型了。Direct、Fanout、Topic、Headers,区别在于如何将消息从Exchange投递到Queue中。Direct使用具体的routing_key来投递;Fanout则忽略routing_key,直接广播给所有的Queue;Topic是使用模糊匹配来对一组routing_key进行投递;Headers也是忽略routing_key,使用消息中的Headers信息来投递。
Headers交换机在本文不会提及。
看过RabbitMQ的”Hello World”教程的童鞋可能会发现在那里面的图中并没有看到Exchange和routing_key的踪迹,但这并不意味着RabbitMQ可以支持直接将消息投递到Queue中,而是在内部使用了默认的Exchange和routing_key了。默认情况下,RabbitMQ使用名称为“amq.direct”的Direct Exchange,routing_key默认名字与Queue保持一致。
我的博客:《RabbitMQ中间件方案:BPM-SAP的应用解耦和用户并发量控制(基于SpringBoot)》https://blog.csdn.net/qq_15329947/article/details/85298978
中的项目就只创建了队列,而没有创建交换机和绑定,使用的就是这种默认直连交换机。
直连交换机中,每对交换机和队列之间只能通过唯一一个路由键来绑定(当然,每个交换机可绑定多个队列,每个队列也可绑定多个交换机),直接了当,所以直接上代码:
package com.jake.rabbitbootdemo.config;
import org.springframework.amqp.core.Binding;
import org.springframework.amqp.core.BindingBuilder;
import org.springframework.amqp.core.DirectExchange;
import org.springframework.amqp.core.Queue;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class DirectConfig {
@Bean
public Queue directQueue1() {
return new Queue("jake.direct.queue.1");
}
@Bean
public Queue directQueue2() {
return new Queue("jake.direct.queue.2");
}
@Bean
public Queue directQueue3() {
return new Queue("jake.direct.queue.3");
}
@Bean
public DirectExchange directExchange() {
return new DirectExchange("jake.direct.exchange");
}
@Bean
public Binding bindQueue1() {
return BindingBuilder.bind(directQueue1()).to(directExchange()).with("jake.direct.routingKey.1");
}
@Bean
public Binding bindQueue2() {
return BindingBuilder.bind(directQueue2()).to(directExchange()).with("jake.direct.routingKey.2");
}
@Bean
public Binding bindQueue3() {
return BindingBuilder.bind(directQueue3()).to(directExchange()).with("jake.direct.routingKey.3");
}
}
package com.jake.rabbitbootdemo.producer;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class DirectProducer {
@Autowired
private RabbitTemplate rabbitTemplate;
public void send1(String msg) {
rabbitTemplate.convertAndSend("jake.direct.exchange", "jake.direct.routingKey.1", msg);
}
public void send2(String msg) {
rabbitTemplate.convertAndSend("jake.direct.exchange", "jake.direct.routingKey.2", msg);
}
public void send3(String msg) {
rabbitTemplate.convertAndSend("jake.direct.exchange", "jake.direct.routingKey.3", msg);
}
}
package com.jake.rabbitbootdemo.consumer;
import org.springframework.amqp.rabbit.annotation.RabbitHandler;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Component;
@Component
@RabbitListener(queues = {"jake.direct.queue.1", "jake.direct.queue.2", "jake.direct.queue.3"})
public class DirectConsumer {
@RabbitHandler
public void process(String msg) {
System.out.println(msg);
}
}
package com.jake.rabbitbootdemo.controller;
import com.jake.rabbitbootdemo.producer.DirectProducer;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("direct")
public class DirectController {
@Autowired
private DirectProducer directProducer;
@RequestMapping("1")
public void produce1(String msg) {
directProducer.send1(msg);
}
@RequestMapping("2")
public void produce2(String msg) {
directProducer.send2(msg);
}
@RequestMapping("3")
public void produce3(String msg) {
directProducer.send3(msg);
}
}
localhost:8091/rabbit-demo/direct/1 携带请求体:msg = “直连1”
localhost:8091/rabbit-demo/direct/2 携带请求体:msg = “直连2”
localhost:8091/rabbit-demo/direct/3 携带请求体:msg = “直连3”
测试结果
控制台一一对应输出:
直连1
直连2
直连3
Topic交换机中路由键有一套规范化的命名规则,参考博客:
https://www.jianshu.com/p/419ecc092f1e
Topic Exchange转发消息主要是根据通配符。在这种交换机下,队列和交换机的绑定会定义一种路由模式,那么,通配符就要在这种路由模式和路由键之间匹配后交换机才能转发消息。
在这种交换机模式下:
(1)路由键(Routing Key)命名必须为一串字符,用句号(.) 隔开,比如 jake.topic.queue。
(2)队列和交换机通过路由键绑定。
i). 当绑定的路由键主题为精确匹配模式时,如:
@Bean
public Binding bindWithAccurateMatcher() {
return BindingBuilder.bind(topicQueueAccurate()).to(topicExchange()).
with("jake.topic.routingKey.accurate");
}
只有生产者发送至主题交换机的路由键与绑定的路由键完全匹配时,被绑定的队列才会被消费:
public void sendAccurate(String msg) {
rabbitTemplate.convertAndSend("jake.topic.exchange", "jake.topic.routingKey.accurate", msg);
}
ii). 当绑定的路由键主题为单词模糊匹配模式(一个星号*代表模糊匹配句号.之后的一个单词)时,如:
@Bean
public Binding bindWithSingleWordMatcher() {
return BindingBuilder.bind(topicQueueSingle()).to(topicExchange()).
with("jake.topic.routingKey.*");
}
或者
@Bean
public Binding bindWithSingleWordMatcher() {
return BindingBuilder.bind(topicQueueSingle()).to(topicExchange()).
with("jake.topic.*.*");
}
当生产者发送至主题交换机的路由键与绑定的路由键能够完成非星号位置的全词匹配和星号位置的单词数量匹配时,被绑定的队列即可被消费:
public void sendSingle(String msg) {
rabbitTemplate.convertAndSend("jake.topic.exchange", "jake.topic.routingKey.only-one-word", msg);
}
iii). 当绑定的路由键主题为任意匹配模式时(井号#匹配句号.后面的任意多个单词),如:
@Bean
public Binding bindWithAnyWordMatcher() {
return BindingBuilder.bind(topicQueueAny()).to(topicExchange()).
with("jake.topic.#");
}
当生产者发送至主题交换机的路由键与绑定的路由键能够完成非井号位置的全词匹配时,被绑定的队列即可被消费:
public void sendAny(String msg) {
rabbitTemplate.convertAndSend("jake.topic.exchange", "jake.topic.routingKey.as.much.as.you.want", msg);
}
TopicConfig
Topic相关配置包括:创建Topic交换机,并绑定队列。
package com.jake.rabbitbootdemo.config;
import org.springframework.amqp.core.Binding;
import org.springframework.amqp.core.BindingBuilder;
import org.springframework.amqp.core.Queue;
import org.springframework.amqp.core.TopicExchange;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class TopicConfig {
@Bean
public Queue topicQueueAccurate() {
return new Queue("jake.topic.queue.accurate");
}
@Bean
public Queue topicQueueSingle() {
return new Queue("jake.topic.queue.single");
}
@Bean
public Queue topicQueueAny() {
return new Queue("jake.topic.queue.any");
}
@Bean
public TopicExchange topicExchange() {
return new TopicExchange("jake.topic.exchange");
}
@Bean
public Binding bindWithAccurateMatcher() {
return BindingBuilder.bind(topicQueueAccurate()).to(topicExchange()).
with("jake.topic.routingKey.accurate");
}
@Bean
public Binding bindWithSingleWordMatcher() {
return BindingBuilder.bind(topicQueueSingle()).to(topicExchange()).
with("jake.topic.routingKey.*");
}
@Bean
public Binding bindWithAnyWordMatcher() {
return BindingBuilder.bind(topicQueueAny()).to(topicExchange()).
with("jake.topic.#");
}
}
生产者TopicProducer
发送路由和消息至交换机
package com.jake.rabbitbootdemo.producer;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class TopicProducer {
@Autowired
private RabbitTemplate rabbitTemplate;
public void sendAccurate(String msg) {
rabbitTemplate.convertAndSend("jake.topic.exchange", "jake.topic.routingKey.accurate", msg);
}
public void sendSingle(String msg) {
rabbitTemplate.convertAndSend("jake.topic.exchange", "jake.topic.routingKey.only-one-word", msg);
}
public void sendAny(String msg) {
rabbitTemplate.convertAndSend("jake.topic.exchange", "jake.topic.routingKey.as.much.as.you.want", msg);
}
}
为了区分生产者发送的路由键匹配到了哪些绑定的主题路由键,每个消费者类都只监听一条队列。
a). 监听全词(精确)匹配:TopicAccurateMatchConsumer
package com.jake.rabbitbootdemo.consumer;
import org.springframework.amqp.rabbit.annotation.RabbitHandler;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Component;
@Component
@RabbitListener(queues = {"jake.topic.queue.accurate"})
public class TopicAccurateMatchConsumer {
@RabbitHandler
public void process(String msg) {
System.out.println(this.getClass().getSimpleName() + ":" + msg);
}
}
b). 监听单词匹配:TopicSingleMatchConsumer
package com.jake.rabbitbootdemo.consumer;
import org.springframework.amqp.rabbit.annotation.RabbitHandler;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Component;
@Component
@RabbitListener(queues = {"jake.topic.queue.single"})
public class TopicSingleMatchConsumer {
@RabbitHandler
public void process(String msg) {
System.out.println(this.getClass().getSimpleName() + ":" + msg);
}
}
c). 监听任意匹配:TopicAnyMatchConsumer
package com.jake.rabbitbootdemo.consumer;
import org.springframework.amqp.rabbit.annotation.RabbitHandler;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Component;
@Component
@RabbitListener(queues = {"jake.topic.queue.any"})
public class TopicAnyMatchConsumer {
@RabbitHandler
public void process(String msg) {
System.out.println(this.getClass().getSimpleName() + ":" + msg);
}
}
提供Http接口,用于测试。
package com.jake.rabbitbootdemo.controller;
import com.jake.rabbitbootdemo.producer.TopicProducer;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("topic")
public class TopicController {
@Autowired
private TopicProducer topicProducer;
@RequestMapping("accurate")
public void accurate(String msg) {
topicProducer.sendAccurate(msg);
}
@RequestMapping("single")
public void single(String msg) {
topicProducer.sendSingle(msg);
}
@RequestMapping("any")
public void any(String msg) {
topicProducer.sendAny(msg);
}
}
localhost:8091/rabbit-demo/topic/accurate 携带请求体:msg = “精确打击”
控制台输出:
TopicAccurateMatchConsumer:精确打击
TopicSingleMatchConsumer:精确打击
TopicAnyMatchConsumer:精确打击
localhost:8091/rabbit-demo/topic/single 携带请求体:msg = “单词匹配”
控制台输出:
TopicAnyMatchConsumer:单词匹配
TopicSingleMatchConsumer:单词匹配
localhost:8091/rabbit-demo/topic/any 携带请求体:msg = “任意匹配”
控制台输出:
TopicAnyMatchConsumer:任意匹配
扇出交换机无需绑定路由,只要是生产者发送到扇出交换机上的消息全部都会被消费者监听到并消费。所以,随意发送任意路由都可以。
package com.jake.rabbitbootdemo.config;
import org.springframework.amqp.core.Binding;
import org.springframework.amqp.core.BindingBuilder;
import org.springframework.amqp.core.FanoutExchange;
import org.springframework.amqp.core.Queue;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class FanoutConfig {
@Bean
public Queue fanoutQueue1() {
return new Queue("jake.fanout.queue.1");
}
@Bean
public Queue fanoutQueue2() {
return new Queue("jake.fanout.queue.2");
}
@Bean
public Queue fanoutQueue3() {
return new Queue("jake.fanout.queue.3");
}
@Bean
public FanoutExchange fanoutExchange() {
return new FanoutExchange("jake.fanout.exchange");
}
@Bean
public Binding bindFanoutQueue1() {
return BindingBuilder.bind(fanoutQueue1()).to(fanoutExchange());
}
@Bean
public Binding bindFanoutQueue2() {
return BindingBuilder.bind(fanoutQueue2()).to(fanoutExchange());
}
@Bean
public Binding bindFanoutQueue3() {
return BindingBuilder.bind(fanoutQueue3()).to(fanoutExchange());
}
}
package com.jake.rabbitbootdemo.producer;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class FanoutProducer {
@Autowired
private RabbitTemplate rabbitTemplate;
public void send(String msg) {
rabbitTemplate.convertAndSend("jake.fanout.exchange", "whatever routingKey", msg);
}
}
package com.jake.rabbitbootdemo.consumer;
import org.springframework.amqp.rabbit.annotation.RabbitHandler;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Component;
@Component
@RabbitListener(queues = {"jake.fanout.queue.1", "jake.fanout.queue.2", "jake.fanout.queue.3"})
public class FanoutConsumer {
@RabbitHandler
public void process(String msg) {
System.out.println(msg);
}
}
package com.jake.rabbitbootdemo.controller;
import com.jake.rabbitbootdemo.producer.FanoutProducer;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("fanout")
public class FanoutController {
@Autowired
private FanoutProducer fanoutProducer;
@RequestMapping("produce")
public void produce(String msg) {
fanoutProducer.send(msg);
}
}
localhost:8091/rabbit-demo/fanout/produce 携带请求体msg = “广播”
测试结果
控制台输出:
广播
广播
广播
可以看出,监听着与扇出交换机的队列的类都接收到了消息。