【学习笔记】RabbitMQ02:交换机,以及结合springboot快速开始

参考资料

  • RabbitMQ官方网站
  • RabbitMQ官方文档
  • 噼咔噼咔-动力节点教程

文章目录

    • 四、RabbitMQ :Exchange 交换机
      • 4.1 交换机类型
      • 4.2 扇形交换机 Fanout Exchange
        • 4.2.1 概念
        • 4.2.1 实例:生产者
          • 4.2.1.1 添加起步依赖
          • 4.2.1.2 配置文件
          • 4.2.1.3 JavaBean进行配置
          • 4.2.1.4 创建一个发送消息的业务
          • 4.2.1.5 查看mq后台
          • 4.2.1.6 如何在后台查看队列中的消息
        • 4.2.2 实例: 消费者
          • 4.2.2.1 依赖导入
          • 4.2.2.2 配置文件
          • 4.2.2.3 添加消费者(接受者)类
      • 4.3 直连交换机 Direct Exchange
        • 4.3.1 介绍
        • 4.3.2 实例:生产者
          • 4.3.2.1 配置交换机和队列
          • 4.3.2.2 发送消息
          • 4.3.2.3 测试接口并查看后台
        • 4.3.3 接收消息
      • 4.4 主题交换机 Topic Exchange
        • 4.4.1 介绍
        • 4.4.2 实例
          • 4.4.2.1 配置
          • 4.4.2.3 接口
          • 4.4.2.4 测试
        • 4.4.3 消费者实例(略
      • 4.5 头部交换机 Headers Exchanges
        • 4.5.1 概述
        • 4.5.2 生产者代码
          • 4.5.2.1 配置
          • 4.5.2.2 测试接口
          • 4.5.2.3 接口测试
        • 4.5.3 消费者(略

四、RabbitMQ :Exchange 交换机

4.1 交换机类型

Exchange (简称X)翻译为交换机、交换器、路由器…

注意:交换机并不是所有消息中间件都有,但是是一个很好的概念

交换机分为以下四个类型

  • 扇形交换机:Fanout Exchange
  • 直连
  • 主题
  • 头部

image-20231013170506364

4.2 扇形交换机 Fanout Exchange

4.2.1 概念

扇形交换机会将生产者的消息投递到所有绑定的队列中,不需要路由键,更不需要路由键匹配,相当于广播群发。

image-20231013170725821

4.2.1 实例:生产者

环境,jdk1.8,ieda2022.3.3,springboot版本2.5.2

4.2.1.1 添加起步依赖
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-amqp</artifactId>
</dependency>

项目用到的几个依赖

image-20231013171220472

4.2.1.2 配置文件

application.yml

spring:rabbitmq:host: 192.168.3.10port: 5672username: adminpassword: huiju@2022!virtual-host: hc-test

注意和控制台端口做出区分,控制台是15672,服务器端口是5672

4.2.1.3 JavaBean进行配置

思路整理

  • 定义一个扇形交换机 (命名
  • 定义一个队列A (命名queueA
  • 定义一个队列A (命名queueB
  • 核心配置:绑定交换机和队列

具体代码

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;/*** @Author zhuhuacong* @Date: 2023/10/13/ 17:25* @description rmq交换机配置*/
@Configuration
public class ExchangeConfig {// 定义交换机@Beanpublic FanoutExchange fanoutExchange(){return new FanoutExchange("xcong.fanout");}// 定义两个不同的队列@Beanpublic Queue queueA(){return new Queue("xcong.fanout.A");}@Beanpublic Queue queueB(){return new Queue("xcong.fanout.B");}// 绑定队列,注意参数名称@Beanpublic Binding bindingA(FanoutExchange fanoutExchange , Queue queueA){return BindingBuilder.bind(queueA).to(fanoutExchange);}@Beanpublic Binding bindingB(FanoutExchange fanoutExchange , Queue queueB){return BindingBuilder.bind(queueB).to(fanoutExchange);}
}

注意:

  • 绑定队列时注意传入的参数名称要和bean 的名称一致
  • 不需要特意到rabbitmq界面里创建队列,只需要发送消息就会自动创建!
  • 但是:要求创建好virtual host
4.2.1.4 创建一个发送消息的业务
package com.zhc.rabbitmqdemo.demos.service;import lombok.extern.slf4j.Slf4j;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;import javax.annotation.Resource;
import java.nio.charset.StandardCharsets;/*** @Author zhuhuacong* @Date: 2023/10/13/ 17:39* @description 扇形X*/
@RestController
@Slf4j
@RequestMapping("/fanout")
public class FanoutController {@Resourceprivate RabbitTemplate rabbitTemplate;@GetMapping("/{msg}")public void sendMessage(@PathVariable("msg") String msg){rabbitTemplate.convertAndSend("xcong.fanout","",msg.getBytes(StandardCharsets.UTF_8));log.info("成功发送消息 {} " ,msg);}
}

成功启动后访问http://localhost:12378/fanout/jjjj

可以检测是否发送成功:

  • 控制台消息如下:

    2023-10-13 17:47:53.593  INFO 30476 --- [io-12378-exec-2] o.s.a.r.c.CachingConnectionFactory       : Attempting to connect to: [192.168.3.10:5672]
    2023-10-13 17:47:53.608  INFO 30476 --- [io-12378-exec-2] o.s.a.r.c.CachingConnectionFactory       : Created new connection: rabbitConnectionFactory#791c12e3:1/SimpleConnection@69c9eb7c [delegate=amqp://admin@192.168.3.10:5672/hc-test, localPort= 53349]
    2023-10-13 17:47:53.675  INFO 30476 --- [io-12378-exec-2] c.z.r.demos.service.FanoutController     : 成功发送消息 jjjj 
4.2.1.5 查看mq后台
  1. 使用client发送队列消息后,mq会自动帮我们创建交换机和队列,并进行绑定

image-20231013175106570

image-20231013175136066

image-20231013175158753

4.2.1.6 如何在后台查看队列中的消息

image-20231016092747001

image-20231016092815280

image-20231016092932516

4.2.2 实例: 消费者
4.2.2.1 依赖导入
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-amqp</artifactId>
</dependency>
4.2.2.2 配置文件
server:port: 12378spring:rabbitmq:host: 192.168.3.10port: 5672username: adminpassword: huiju@2022!virtual-host: hc-test
4.2.2.3 添加消费者(接受者)类

注意使用几个关键注解:

  • 在对应的方法上添加@RabbitListener
  • 可以传入参数queues,属性为队列名(可以多个
@Service
@Slf4j
public class ConsumerService {@RabbitListener(queues = {"xcong.fanout.A", "xcong.fanout.B"})public void revicerMsg(Message message) {byte[] body = message.getBody();MessageProperties messageProperties = message.getMessageProperties();String consumerQueue = messageProperties.getConsumerQueue();String receivedExchange = messageProperties.getReceivedExchange();log.info("接收到的消息:{} . 消息队列 :{} , 交换机名称:{}",new String(body) , consumerQueue , receivedExchange);}
}
  • 为了便于接受消息,设置打印了参数信息

  • 在生产者出产生消息,然后控制台输出:

    接收到的消息:一个普通的信息 . 消息队列 :xcong.fanout.B , 交换机名称:xcong.fanout
    接收到的消息:一个普通的信息 . 消息队列 :xcong.fanout.A , 交换机名称:xcong.fanout
    

    成功接受消息

4.3 直连交换机 Direct Exchange

4.3.1 介绍

根据 路由键 匹配,进行路由消息队列。

image-20231016095441574

流程梳理如下:

  1. 生产者将消息发送到交换机X
  2. 交换机会根据路由键匹配队列
  3. 并且同一个键也可以匹配多个队列
4.3.2 实例:生产者

具体的依赖和配置都不变,不做赘述了。接下来的示例只会解释不同的部分

4.3.2.1 配置交换机和队列

思路整理

  1. (可选引入spring提供的注解@ConfigurationProperties 从配置文件中读取属性
  2. 定义交换机
  3. 定义队列
  4. 绑定交换机和队列(注意:需要指定key
package com.zhc.rabbitmqdemo.demos.config;import org.springframework.amqp.core.*;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;/*** @Author zhuhuacong* @Date: 2023/10/16/ 9:58* @description 直连交换机*/
@Configuration
public class DirectExchangeConfig {public static String exchangeName = "xcong.direct";public static String queueC = "xcong.direct.C";public static String queueD = "xcong.direct.D";// 创建交换机@Beanpublic DirectExchange directExchange(){// 使用建造者模式return ExchangeBuilder.directExchange(exchangeName).build();}// 创建队列@Beanpublic Queue queueC(){return QueueBuilder.durable(queueC).build();}// 创建队列@Beanpublic Queue queueD(){return QueueBuilder.durable(queueD).build();}// 绑定队列@Beanpublic Binding bindingC(DirectExchange directExchange , Queue queueC){return BindingBuilder.bind(queueC).to(directExchange).with("error");}@Beanpublic Binding bindingD1(DirectExchange directExchange , Queue queueD){return BindingBuilder.bind(queueD).to(directExchange).with("error");}@Beanpublic Binding bindingD2(DirectExchange directExchange , Queue queueD){return BindingBuilder.bind(queueD).to(directExchange).with("info");}@Beanpublic Binding bindingD3(DirectExchange directExchange , Queue queueD){return BindingBuilder.bind(queueD).to(directExchange).with("warning");}}
4.3.2.2 发送消息
@RestController
@Slf4j
@RequestMapping("/direct")
public class DirectController {@Resourceprivate RabbitTemplate rabbitTemplate;@GetMapping("/{key}/{msg}")public void sentErrorMsg(@PathVariable("msg") String msg , @PathVariable("key")String key){log.info("准备发送的信息:{} , 路由键 :{}",msg , key);rabbitTemplate.convertAndSend(exchangeName , key , msg.getBytes(StandardCharsets.UTF_8));log.info("成功发送");}
}
4.3.2.3 测试接口并查看后台

小结,发送消息时的路由key和队列的key一致,就可以将消息发送到指定的UI队列

访问接口/direct/info/一个普通的信息:队列D接收到消息

image-20231016101825472

访问接口/direct/error/一个报错的信息:队列CD都接收到消息

image-20231016101930293

image-20231016101952860

访问接口/direct/warning/一个警告:队列D接收到消息

image-20231016102118533

4.3.3 接收消息

接受消息代码一致,截图展示一下结果

image-20231016103717050

4.4 主题交换机 Topic Exchange

4.4.1 介绍

通配符匹配(路由键),相当于模糊查询

  • #匹配多个单词,用来表示任意数量的单词(一个或多个

  • *匹配一个单词(必须且只有一个)

    • .来隔开为一个单词

举个例子:左边是队列的路由键,而右边是发送的路由键

image-20231016104011326

4.4.2 实例

image-20231016104249614

4.4.2.1 配置
@Configuration
public class TopicExchangeConfig {public static String exchangeName = "xcong.topic";public static String queue1 = "xcong.queue.1";public static String queue2 = "xcong.queue.2";@Beanpublic TopicExchange topicExchange(){return ExchangeBuilder.topicExchange(exchangeName).build();}@Beanpublic Queue queue1(){return QueueBuilder.durable(queue1).build();}@Beanpublic Queue queue2(){return QueueBuilder.durable(queue2).build();}@Beanpublic Binding binding1(TopicExchange topicExchange , Queue queue1){return BindingBuilder.bind(queue1).to(topicExchange).with("*.orange.*");}@Beanpublic Binding binding2A(TopicExchange topicExchange , Queue queue2){return BindingBuilder.bind(queue2).to(topicExchange).with("*.*.rabbit");}@Beanpublic Binding binding2B(TopicExchange topicExchange , Queue queue2){return BindingBuilder.bind(queue2).to(topicExchange).with("lazy.#");}
}
4.4.2.3 接口
@RestController
@Slf4j
@RequestMapping("/topic")
public class TopicController {@Resourceprivate RabbitTemplate rabbitTemplate;@GetMapping("/{key}/{msg}")public void sendMsg(@PathVariable("key")String key , @PathVariable("msg")String msg){log.info("发送的信息:{},发送的键:{}", msg , key);Message message = MessageBuilder.withBody(msg.getBytes(StandardCharsets.UTF_8)).build();rabbitTemplate.convertAndSend(TopicExchangeConfig.exchangeName , key , message);}
}
4.4.2.4 测试
  • 访问接口/topic/ssss/一条普通的消息:无法再后台查询到接受的消息(无匹配)

  • 访问接口/topic/lazy.orange.rabbit/一条普通的消息:队列1和2都可查

    image-20231016105943398

  • 访问接口/topic/A.orange.B/一条普通的消息:只有队列1接收到消息

    image-20231016110134406

4.4.3 消费者实例(略

4.5 头部交换机 Headers Exchanges

4.5.1 概述

头部交换机使用较少,要知道,每一次消息不只包含body,还有头部信息headers。

image-20231016113339680

4.5.2 生产者代码

image-20231016113732443

注意:

  1. 头部交换机的不同之处在于,在绑定交换机时,配置的参数不一样
  2. 可以是string,也可以是map<Stirng,object>
  3. 绑定的方法whereAll 和whereAny涉及到两种不同的匹配机制:前者是全匹配,后者是任意一个匹配即可
4.5.2.1 配置
@Configuration
public class HeaderExchangeConfig {public static String exchangeName = "xcong.header";@Beanpublic HeadersExchange headersExchange(){return ExchangeBuilder.headersExchange(exchangeName).build();}@Beanpublic Queue queue9(){return QueueBuilder.durable("xcong.queue.9").build();}@Beanpublic Queue queue10(){return QueueBuilder.durable("xcong.queue.10").build();}@Beanpublic Binding binding9(HeadersExchange headersExchange , Queue queue9){Map<String , Object> headers = new HashMap<>();headers.put("type" , "m");headers.put("status",1);return BindingBuilder.bind(queue9).to(headersExchange).whereAll(headers).match();}@Beanpublic Binding binding10(HeadersExchange headersExchange , Queue queue10){Map<String , Object> headers = new HashMap<>();headers.put("type" , "s");headers.put("status",2);return BindingBuilder.bind(queue10).to(headersExchange).whereAny(headers).match();}
}

访问控制台可以看到匹配规则:

image-20231016143517791

image-20231016143137825

注意看q10是匹配规则就是all ,而q10的规则是any

4.5.2.2 测试接口
@RestController
@Slf4j
@RequestMapping("/header")
public class HeadersController {@Resourceprivate RabbitTemplate rabbitTemplate;@GetMapping("/{type}/{status}/{msg}")public void sendMsg(@PathVariable("type")String type , @PathVariable("status")Integer status , @PathVariable("msg")String msg){log.info("(头部交换器)发送的信息:{},发送的头部为< type : {} , status : {}>", msg , type ,status);MessageProperties messageProperties = new MessageProperties();messageProperties.setHeader("type",type);messageProperties.setHeader("status" , status);Message message = MessageBuilder.withBody(msg.getBytes(StandardCharsets.UTF_8)).andProperties(messageProperties).build();rabbitTemplate.convertAndSend(HeaderExchangeConfig.exchangeName , "" , message);}
}
4.5.2.3 接口测试
  • 访问/header/k/1/一个普通的消息:没有匹配
  • 访问/header/m/1/一个普通的消息:匹配Q9
  • 访问/header/s/1/一个普通的消息:匹配Q10(走了任意匹配
4.5.3 消费者(略

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/138982.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

A股风格因子看板 (2023.10 第05期)

该因子看板跟踪A股风格因子&#xff0c;该因子主要解释沪深两市的市场收益、刻画市场风格趋势的系列风格因子&#xff0c;用以分析市场风格切换、组合风格暴露等。 今日为该因子跟踪第05期&#xff0c;指数组合数据截止日2023-09-30&#xff0c;要点如下 近1年A股风格因子检验统…

小程序框架

目录 一.什么是小程序框架 二.视图层 先建立四个包 数据绑定 条件渲染 ​编辑 使用模板 事件系统 所有a.js 输出结果 ​编辑 三.跳转 a页面跳b页面 ​编辑 a页面跳c页面 测试结果 四.生命周期 一级跳一级 一级跳二级 二级跳二级 页面隔代跳转 一.什么是小程…

钢铁异常分类140篇Trans 学习笔记 小陈读paper

钢铁异常分类 对比学习 比较好用 1.首先&#xff0c;为每个实例生成一对样本&#xff0c; 来自同一实例的样本被认为是正例&#xff0c; 来自不同实例的样本被认为是负例。 2.其次&#xff0c;这些样本被馈送到编码器以获得嵌入。 3.在对比损失[16]的影响下&#xff0c; …

机器人命令表设计

演算命令 CLEAR 将数据 1 上被指定的编号以后的变数的内容&#xff0c;以及数据 2 上仅被指定的个数都清除至 0。 INC 在被指定的变数内容上加上 1。 DEC 在被指定的变数内容上减掉 1。 SET 在数据 1 上设定数据 2。 ADD 将数据 1 和数据 2 相加&#xff0c;得出的结果保存在数…

基于springboot实现汉服文化分享平台项目【项目源码+论文说明】计算机毕业设计

摘要 本论文主要论述了如何使用JAVA语言开发一个汉服文化平台网站 &#xff0c;本系统将严格按照软件开发流程进行各个阶段的工作&#xff0c;采用B/S架构&#xff0c;面向对象编程思想进行项目开发。在引言中&#xff0c;作者将论述汉服文化平台网站的当前背景以及系统开发的…

WPF 用户控件依赖注入赋值

前言 我一直想组件化得去开发WPF&#xff0c;因为我觉得将复杂问题简单化是最好的 如何组件化开发 主窗口引用 <Window x:Class"WpfApp1.MainWindow"xmlns"http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x"http://schemas.…

机器学习算法 —— 1. K近邻算法

K近邻算法 1. K近邻算法简介2. K近邻算法常见距离度量2.1 欧氏距离&#xff08;Euclidean Distance&#xff09;2.2 曼哈顿距离&#xff08;Manhattan Distance &#xff09;2.3 切比雪夫距离&#xff08;Chebyshev Distance&#xff09;2.4 闵可夫斯基距离&#xff08;Minkows…

宏电股份RedCap产品亮相迪拜华为MBBF,并参与RedCap全球商用阶段性成果发布

10月10-11日&#xff0c;由华为主办的第十四届全球移动宽带论坛&#xff08;MBBF&#xff09;在阿联酋迪拜成功举办。MBBF期间&#xff0c;华为联合宏电股份等产业伙伴集中发布RedCap商用阶段性成果。本次发布是RedCap产业的关键里程碑&#xff0c;标志着RedCap在全球已具备规模…

【马蹄集】—— 概率论专题

概率论专题 目录 MT2226 抽奖概率MT2227 饿饿&#xff01;饭饭&#xff01;MT2228 甜甜花的研究MT2229 赌石MT2230 square MT2226 抽奖概率 难度&#xff1a;黄金    时间限制&#xff1a;1秒    占用内存&#xff1a;128M 题目描述 小码哥正在进行抽奖&#xff0c;箱子里有…

亚马逊测评安全吗?

测评可以说是卖家非常宝贵的财富&#xff0c;通过测评和广告相结合&#xff0c;可以快速有效的提升店铺的产品销量&#xff0c;提高转化&#xff0c;提升listing权重&#xff0c;但现在很多卖家找真人测评补单后店铺出现问题导致大家对测评的安全性感到担忧&#xff0c;因为真人…

SystemC入门学习-第8章 测试平台的编写

之前的章节&#xff0c;一直把重点放在用SystemC来描述硬件电路上&#xff0c;即如何编写SystemC 的RTL。本章的注意力集中在验证和编写测试平台上。 重点包括&#xff1a; 如何生成时钟信号和激励波形如何编写有响应能力的测试平台如何记录仿真结果 8.1 编写测试平台 测试平…

SQL及数据库基础知识点总结

一. SQL&#xff08;Structured Query Language&#xff09;&#xff1a; 结构化查询语言。SQL语法不区分关键字的大小写&#xff0c;多条SQL语句必须以&#xff1b;分隔。 二. SQL的作用&#xff1a; SQL可以访问和处理数据库&#xff0c;包括数据的增删改查&#xff08;插…