RabbitMQ之Exchange(交换机)

news/2024/12/5 6:46:10/

目录

一、Exchange简介

二、Exchange(交换机)的类型

1.直连交换机:Direct Exchange

2.主题交换机:Topic Exchange

3.扇形交换机:Fanout Exchange

4、默认交换机

5、Dead Letter Exchange(死信交换机)

 三、交换机的属性

四、交换机的使用

0、给子模块添加依赖

1、直连交换机

 2、主题交换机(Topic Exchange)

 3、扇形交换机(Fanout Exchange)


一、Exchange简介

在RabbitMQ中,生产者发送消息不会直接将消息投递到队列中,而是先将消息投递到交换机中,在由交换机转发到具体的队列,队列再将消息以推送或者拉取方式给消费者进行消费

                创建消息            路由键           pull/push
   生产者------------>交换机------------>队列------------>消费者 

首部交换机:Headers exchange 

交换机原理图

二、Exchange(交换机)的类型

1.直连交换机:Direct Exchange

直连交换机是一种带路由功能的交换机,一个队列会和一个交换机绑定,除此之外再绑定一个routing_key,当消息被发送的时候,需要指定一个binding_key,这个消息被送达交换机的时候,就会被这个交换机送到指定的队列里面去。同样的一个binding_key也是支持应用到多个队列中的。

     这样当一个交换机绑定多个队列,就会被送到对应的队列去处理。

     注1:什么是路由键 
          每个消息都有一个称为路由键(routing key)的属性,它其实就是一个简单的字符串

     注2:直连交换机适用场景
          有优先级的任务,根据任务的优先级把消息发送到对应的队列,这样可以指派更多的资源去处理高优先级的队列。

2.主题交换机:Topic Exchange

直连交换机的缺点!
     直连交换机的routing_key方案非常简单,如果我们希望一条消息发送给多个队列,那么这个交换机需要绑定上非常多的routing_key,
     假设每个交换机上都绑定一堆的routing_key连接到各个队列上。那么消息的管理就会异常地困难。
     所以RabbitMQ提供了一种主题交换机,发送到主题交换机上的消息需要携带指定规则的routing_key,
     主题交换机会根据这个规则将数据发送到对应的(多个)队列上。

     主题交换机的routing_key需要有一定的规则,交换机和队列的binding_key需要采用*.#.*.....的格式,每个部分用.分开,其中
     *表示一个单词 
     #表示任意数量(零个或多个)单词。

     示例:
     队列Q1绑定键为 *.TT.*
     队列Q2绑定键为TT.#

     如果一条消息携带的路由键为 A.TT.B,那么队列Q1将会收到 
     如果一条消息携带的路由键为TT.AA.BB,那么队列Q2将会收到

3.扇形交换机:Fanout Exchange

扇形交换机是最基本的交换机类型,它所能做的事情非常简单———广播消息。
     扇形交换机会把能接收到的消息全部发送给绑定在自己身上的队列。因为广播不需要“思考”,所以扇形交换机处理消息的速度也是所有的交换机类型里面最快的。 

     这个交换机没有路由键概念,就算你绑了路由键也是无视的。 

4、默认交换机

实际上是一个由RabbitMQ预先声明好的名字为空字符串的直连交换机(direct exchange)。它有一个特殊的属性使得它对于
     简单应用特别有用处:那就是每个新建队列(queue)都会自动绑定到默认交换机上,绑定的路由键(routing key)名称与队列名称相同。

如:当你声明了一个名为”hello”的队列,RabbitMQ会自动将其绑定到默认交换机上,绑定(binding)的路由键名称也是为”hello”。
     因此,当携带着名为”hello”的路由键的消息被发送到默认交换机的时候,此消息会被默认交换机路由至名为”hello”的队列中
  
     类似amq.*的名称的交换机:
     这些是RabbitMQ默认创建的交换机。这些队列名称被预留做RabbitMQ内部使用,不能被应用使用,否则抛出403 (ACCESS_REFUSED)错误 

5、Dead Letter Exchange(死信交换机)

在默认情况,如果消息在投递到交换机时,交换机发现此消息没有匹配的队列,则这个消息将被悄悄丢弃。
     为了解决这个问题,RabbitMQ中有一种交换机叫死信交换机。当消费者不能处理接收到的消息时,将这个消息重新发布到另外一个队列中,
     等待重试或者人工干预。这个过程中的exchange和queue就是所谓的”Dead Letter Exchange 和 Queue

 三、交换机的属性

除交换机类型外,在声明交换机时还可以附带许多其他的属性,其中最重要的几个分别是:
   Name:交换机名称
   Durability:是否持久化。如果持久性,则RabbitMQ重启后,交换机还存在
   Auto-delete:当所有与之绑定的消息队列都完成了对此交换机的使用后,删掉它
   Arguments:扩展参数

四、交换机的使用

   rabbitmq02                     #主模块
   rabbitmq-provider           #生产者
   rabbitmq-consumer        #消费者

0、给子模块添加依赖

<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-amqp</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><optional>true</optional></dependency>

1、直连交换机

application.properties

server.port=8080
## rabbitmq config
spring.rabbitmq.host=192.168.186.128
spring.rabbitmq.port=5672
spring.rabbitmq.username=admin
spring.rabbitmq.password=admin##与启动容器时虚拟主机名字一致~~~与启动容器时虚拟主机名字一致~~~与启动容器时虚拟主机名字一致~~~
spring.rabbitmq.virtual-host=my_vhost

1.RabbitmqDirectConfig

package com.cxy.rabbitmqconsumer.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 RabbitmqDirectConfig {
//    直连交换机对应的队列@Beanpublic Queue directQueue(){return new Queue("cxy-direct-Queue");}//直连交换机@Beanpublic DirectExchange directExchange(){return new DirectExchange("cxy-direct-Exchange");}//直连交换机与队列的绑定关系@Beanpublic Binding directBinding(){return BindingBuilder.bind(directQueue()).to(directExchange()).with("direct_routing_key");}
}

2.SendMessageController

rabbitTemplate.convertAndSend("testDirectExchange", "testDirectRouting", map);
  sendDirectMessage:进行消息推送(也可以改为定时任务,具体看需求)
         

package com.cxy.rabbitmqprovider.controller;import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.HashMap;
import java.util.Map;@RestController
public class SendMessageController {@Autowiredprivate RabbitTemplate rabbitTemplate;@RequestMapping("/sendDirect")public Map sendDirect(String routingKey) {Map msg = new HashMap();msg.put("msg", "直连交换机 cxy-direct-Exchange 发送的消息");msg.put("time", LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd hh-mm-ss")));rabbitTemplate.convertAndSend("cxy-direct-Exchange",routingKey,msg);Map res = new HashMap();res.put("code", 200);res.put("msg", "成功");return res;}
}

运行结果

符合直联机与队列绑定的关系才可以增加 

3.查看rabbitmq管理界面

我们目前还创建消费者rabbitmq-consumer,消息没有被消费的,我们去rabbitMq管理页面看看,是否推送成功 
       Overview选项卡,可以查看到刚刚创建的消息

4. 消息接收监听类DirectReceiver

package com.cxy.rabbitmqconsumer.config;import org.springframework.amqp.rabbit.annotation.RabbitHandler;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Component;import java.util.Map;@Component
@RabbitListener(queues = {"direct-queue"})
public class DirectReceiver {@RabbitHandlerpublic void handler(Map msg){System.out.println(msg);}
}

注1:新版jdk日期及格式化
          LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));

     注2:rabbitTemplate和amqpTemplate有什么关系
          查看源码中会发现rabbitTemplate实现自amqpTemplate接口,两者使用起来并无区别,功能一致

     注3:不要@Configuration写成了@Configurable,这两个长得很像
          @Configuration该注解是可以用来替代XML文件。
          手动new出来的对象,正常情况下,Spring是无法依赖注入的,这个时候可以使用@Configurable注解

 2、主题交换机(Topic Exchange)

1、RabbitTopicConfig

package com.cxy.rabbitmqprovider.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 RabbitTopicConfig {//    队列@Beanpublic Queue topicQueueA(){return new Queue("cxy-topic-queue-a");}@Beanpublic Queue topicQueueB(){return new Queue("cxy-topic-queue-b");}@Beanpublic Queue topicQueueC(){return new Queue("cxy-topic-queue-c");}//    交换机@Beanpublic TopicExchange topicExchange(){return new TopicExchange("cxy-topic-exchange");}//    绑定关系@Beanpublic Binding topicBindingA(){return BindingBuilder.bind(topicQueueA()).to(topicExchange()).with("topic.person.xx");}@Beanpublic Binding topicBindingB(){return BindingBuilder.bind(topicQueueB()).to(topicExchange()).with("topic.person.yy");}@Beanpublic Binding topicBindingC(){return BindingBuilder.bind(topicQueueC()).to(topicExchange()).with("topic.person.*");}}

 2.SendMessageController

@RequestMapping("/sendTopic")public Map sendTopic(String routing_key){Map msg = new HashMap();msg.put("msg","这是通过主题交换机sendTopic投递的消息");msg.put("now", LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")));rabbitTemplate.convertAndSend("topic-exchange",routing_key,msg);Map res = new HashMap();res.put("msg","投递成功");res.put("code",200);return res;}

 

 

 

 3、扇形交换机(Fanout Exchange)

1、RabbitmqFanoutConfig

package com.cxy.rabbitmqprovider.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 RabbitmqFanoutConfig {@Beanpublic Queue fanoutQueueA(){return new Queue("cxy-fanout-queue-a");}@Beanpublic Queue fanoutQueueB(){return new Queue("cxy-fanout-queue-b");}@Beanpublic Queue fanoutQueueC(){return new Queue("cxy-fanout-queue-c");}@Beanpublic FanoutExchange fanoutExchange(){return new FanoutExchange("cxy-fanout-exchange");}@Beanpublic Binding fanoutBindingA(){return BindingBuilder.bind(fanoutQueueA()).to(fanoutExchange());}@Beanpublic Binding fanoutBindingB(){return BindingBuilder.bind(fanoutQueueB()).to(fanoutExchange());}@Beanpublic Binding fanoutBindingC(){return BindingBuilder.bind(fanoutQueueC()).to(fanoutExchange());}
}

因为是扇型交换机, 路由键无需配置,配置也不起作用,两处地方均未配置路由键

 2.SendMessageController

@RequestMapping("/sendFanout")public Map sendFanout(){Map msg = new HashMap();msg.put("msg","这是通过扇形交换机投递的消息");msg.put("now", LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")));rabbitTemplate.convertAndSend("cxy-fanout-exchange",null,msg);Map res = new HashMap();res.put("msg","投递成功");res.put("code",200);return res;}


http://www.ppmy.cn/news/5145.html

相关文章

sentinel-1.8.6 基于生产实践遇到的坑

最近基于sentinel-1.8.6搭建了一套供生产使用。在开发的过程中遇到了一些问题并进行了改造&#xff0c;在此记录一下。 1、http访问支持ip级别限流 如果是基于servlet容器的,可以手动复制com.alibaba.csp.sentinel.adapter.servlet.CommonFilter&#xff0c;自定义一个filter…

Transformer17

还是transformer 这次还是谷歌哈 又在机器人领域发力 谷歌机器人团队等在机器人领域构建了一个多任务 transformer 模型&#xff0c;显著改进了对新任务、环境和对象的零样本泛化。轻松完成700多条指令、成功率达97%&#xff01;谷歌开源机器人领域 我们知道&#xff0c;机器…

MySQL 55题及答案【八】

1.数据库三范式是什么? 1. 第一范式&#xff08;1NF&#xff09;&#xff1a;字段具有原子性,不可再分。(所有关系型数据库系 统都满足第一范式数据库表中的字段都是单一属性的&#xff0c;不可再分) 2. 第二范式&#xff08;2NF&#xff09;是在第一范式&#xff08;1NF&a…

Qt+C++基本绘图(画线,画圆,矩形, 撤销,重做)

程序示例精选 QtC基本绘图(画线&#xff0c;圆&#xff0c;矩形画线&#xff09; 如需安装运行环境或远程调试&#xff0c;见文章底部微信名片&#xff0c;由专业技术人员远程协助&#xff01; 前言 这篇博客针对《QtC基本绘图(画线&#xff0c;画圆&#xff0c;矩形, 撤销&am…

惠普Elite蜻笔记本系统损坏怎么U盘重装教学

惠普Elite蜻笔记本系统损坏怎么U盘重装教学&#xff0c;有用户使用的惠普Elite蜻笔记本系统受到了其他恶意程序的损坏&#xff0c;导致无法正常的开启使用。所以想要去进行电脑系统的重装。那么如何U盘重装电脑系统&#xff0c;一起来看看详细的重装步骤吧。 准备工作&#xff…

【Ctfer训练计划】——(二)

作者名&#xff1a;Demo不是emo 主页面链接&#xff1a;主页传送门创作初心&#xff1a;舞台再大&#xff0c;你不上台&#xff0c;永远是观众&#xff0c;没人会关心你努不努力&#xff0c;摔的痛不痛&#xff0c;他们只会看你最后站在什么位置&#xff0c;然后羡慕或鄙夷座右…

[第十三届蓝桥杯/java/算法]A——排列字母

&#x1f9d1;‍&#x1f393;个人介绍&#xff1a;大二软件生&#xff0c;现学JAVA、Linux、MySQL、算法 &#x1f4bb;博客主页&#xff1a;渡过晚枫渡过晚枫 &#x1f453;系列专栏&#xff1a;[编程神域 C语言]&#xff0c;[java/初学者]&#xff0c;[蓝桥杯] &#x1f4d6…

MySQL中这14个有用的小知识,快学起来吧

前言 我最近用MYSQL数据库挺多的&#xff0c;发现了一些非常有用的小玩意&#xff0c;今天拿出来分享到大家&#xff0c;希望对你会有所帮助。 1.group_concat 在我们平常的工作中&#xff0c;使用group by进行分组的场景&#xff0c;是非常多的。 比如想统计出用户表中&…