• 能够说出什么是消息中间件
  • 能够安装RabbitMQ
  • 能够编写RabbitMQ的入门程序
  • 能够说出RabbitMQ的5种模式特征
  • 能够使用Spring整合RabbitMQ

1. 消息中间件概述

1.1. 什么是消息中间件

MQ全称为Message Queue,消息队列是应用程序和应用程序之间的通信方法。

  • 为什么使用MQ
    在项目中,可将一些无需即时返回且耗时的操作提取出来,进行异步处理,而这种异步处理的方式大大的节省了服务器的请求响应时间,从而提高系统吞吐量
  • 开发中消息队列通常有如下应用场景:
    1、任务异步处理
    将不需要同步处理的并且耗时长的操作由消息队列通知消息接收方进行异步处理。提高了应用程序的响应时间。
    2、应用程序解耦合
    MQ相当于一个中介,生产方通过MQ与消费方交互,它将应用程序进行解耦合。
    3、削峰填谷
    如订单系统,在下单的时候就会往数据库写数据。但是数据库只能支撑每秒1000左右的并发写入,并发量再高就容易宕机。低峰期的时候并发也就100多个,但是在高峰期时候,并发量会突然激增到5000以上,这个时候数据库肯定卡死了。
  • image.png
    消息被MQ保存起来了,然后系统就可以按照自己的消费能力来消费,比如每秒1000个数据,这样慢慢写入数据库,这样就不会卡死数据库了。image.png

但是使用了MQ之后,限制消费消息的速度为1000,但是这样一来,高峰期产生的数据势必会被积压在MQ中,高峰就被“削”掉了。但是因为消息积压,在高峰期过后的一段时间内,消费消息的速度还是会维持在1000QPS,直到消费完积压的消息,这就叫做“填谷”

  • image.png

1.2. AMQP 和 JMS

MQ是消息通信的模型;实现MQ的大致有两种主流方式:AMQP、JMS。

1.2.1. AMQP

AMQP是一种协议,更准确的说是一种binary wire-level protocol(链接协议)。这是其和JMS的本质差别,AMQP不从API层进行限定,而是直接定义网络交换的数据格式。

1.2.2. JMS

JMS即Java消息服务(JavaMessage Service)应用程序接口,是一个Java平台中关于面向消息中间件(MOM)的API,用于在两个应用程序之间,或分布式系统中发送消息,进行异步通信。

1.2.3. AMQP 与 JMS 区别

  • JMS是定义了统一的接口,来对消息操作进行统一;AMQP是通过规定协议来统一数据交互的格式
  • JMS限定了必须使用Java语言;AMQP只是协议,不规定实现方式,因此是跨语言的。
  • JMS规定了两种消息模式;而AMQP的消息模式更加丰富

1.3. 消息队列产品

市场上常见的消息队列有如下:

  • ActiveMQ:基于JMS
  • ZeroMQ:基于C语言开发
  • RabbitMQ:基于AMQP协议,erlang语言开发,稳定性好
  • RocketMQ:基于JMS,阿里巴巴产品
  • Kafka:类似MQ的产品;分布式消息系统,高吞吐量

1.4. RabbitMQ

RabbitMQ是由erlang语言开发,基于AMQP(Advanced Message Queue 高级消息队列协议)协议实现的消息队列,它是一种应用程序之间的通信方法,消息队列在分布式系统开发中应用非常广泛。

RabbitMQ官方地址:http://www.rabbitmq.com/

RabbitMQ提供了6种模式:简单模式,work模式,Publish/Subscribe发布与订阅模式,Routing路由模式,Topics主题模式,RPC远程调用模式(远程调用,不太算MQ;暂不作介绍);

官网对应模式介绍:https://www.rabbitmq.com/getstarted.html
image.png

2. 安装及配置RabbitMQ

详细查看 资料/软件/安装RabbitMQ.md 文档。

3. RabbitMQ入门

3.1. 搭建示例工程

3.1.1. 创建工程

image.png
image.png

3.1.2. 添加依赖

往heima-rabbitmq的pom.xml文件中添加如下依赖:

  1. <dependency>
  2. <groupId>com.rabbitmq</groupId>
  3. <artifactId>amqp-client</artifactId>
  4. <version>5.6.0</version>
  5. </dependency>

3.2. 编写生产者

编写消息生产者com.itheima.rabbitmq.simple.Producer

  1. package com.itheima.rabbitmq.simple;
  2. import com.rabbitmq.client.Channel;
  3. import com.rabbitmq.client.Connection;
  4. import com.rabbitmq.client.ConnectionFactory;
  5. public class Producer {
  6. static final String QUEUE_NAME = "simple_queue";
  7. public static void main(String[] args) throws Exception {
  8. //创建连接工厂
  9. ConnectionFactory connectionFactory = new ConnectionFactory();
  10. //主机地址;默认为 localhost
  11. connectionFactory.setHost("localhost");
  12. //连接端口;默认为 5672
  13. connectionFactory.setPort(5672);
  14. //虚拟主机名称;默认为 /
  15. connectionFactory.setVirtualHost("/itcast");
  16. //连接用户名;默认为guest
  17. connectionFactory.setUsername("heima");
  18. //连接密码;默认为guest
  19. connectionFactory.setPassword("heima");
  20. //创建连接
  21. Connection connection = connectionFactory.newConnection();
  22. // 创建频道
  23. Channel channel = connection.createChannel();
  24. // 声明(创建)队列
  25. /**
  26. * 参数1:队列名称
  27. * 参数2:是否定义持久化队列
  28. * 参数3:是否独占本次连接
  29. * 参数4:是否在不使用的时候自动删除队列
  30. * 参数5:队列其它参数
  31. */
  32. channel.queueDeclare(QUEUE_NAME, true, false, false, null);
  33. // 要发送的信息
  34. String message = "你好;小兔子!";
  35. /**
  36. * 参数1:交换机名称,如果没有指定则使用默认Default Exchage
  37. * 参数2:路由key,简单模式可以传递队列名称
  38. * 参数3:消息其它属性
  39. * 参数4:消息内容
  40. */
  41. channel.basicPublish("", QUEUE_NAME, null, message.getBytes());
  42. System.out.println("已发送消息:" + message);
  43. // 关闭资源
  44. channel.close();
  45. connection.close();
  46. }
  47. }

在执行上述的消息发送之后;可以登录rabbitMQ的管理控制台,可以发现队列和其消息:
image.png
image.png

3.3. 编写消费者

抽取创建connection的工具类com.itheima.rabbitmq.util.ConnectionUtil;

  1. package com.itheima.rabbitmq.util;
  2. import com.rabbitmq.client.Connection;
  3. import com.rabbitmq.client.ConnectionFactory;
  4. public class ConnectionUtil {
  5. public static Connection getConnection() throws Exception {
  6. //创建连接工厂
  7. ConnectionFactory connectionFactory = new ConnectionFactory();
  8. //主机地址;默认为 localhost
  9. connectionFactory.setHost("localhost");
  10. //连接端口;默认为 5672
  11. connectionFactory.setPort(5672);
  12. //虚拟主机名称;默认为 /
  13. connectionFactory.setVirtualHost("/itcast");
  14. //连接用户名;默认为guest
  15. connectionFactory.setUsername("heima");
  16. //连接密码;默认为guest
  17. connectionFactory.setPassword("heima");
  18. //创建连接
  19. return connectionFactory.newConnection();
  20. }
  21. }

编写消息的消费者com.itheima.rabbitmq.simple.Consumer

  1. package com.itheima.rabbitmq.simple;
  2. import com.itheima.rabbitmq.util.ConnectionUtil;
  3. import com.rabbitmq.client.*;
  4. import java.io.IOException;
  5. public class Consumer {
  6. public static void main(String[] args) throws Exception {
  7. Connection connection = ConnectionUtil.getConnection();
  8. // 创建频道
  9. Channel channel = connection.createChannel();
  10. // 声明(创建)队列
  11. /**
  12. * 参数1:队列名称
  13. * 参数2:是否定义持久化队列
  14. * 参数3:是否独占本次连接
  15. * 参数4:是否在不使用的时候自动删除队列
  16. * 参数5:队列其它参数
  17. */
  18. channel.queueDeclare(Producer.QUEUE_NAME, true, false, false, null);
  19. //创建消费者;并设置消息处理
  20. DefaultConsumer consumer = new DefaultConsumer(channel){
  21. @Override
  22. /**
  23. * consumerTag 消息者标签,在channel.basicConsume时候可以指定
  24. * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
  25. * properties 属性信息
  26. * body 消息
  27. */
  28. public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
  29. //路由key
  30. System.out.println("路由key为:" + envelope.getRoutingKey());
  31. //交换机
  32. System.out.println("交换机为:" + envelope.getExchange());
  33. //消息id
  34. System.out.println("消息id为:" + envelope.getDeliveryTag());
  35. //收到的消息
  36. System.out.println("接收到的消息为:" + new String(body, "utf-8"));
  37. }
  38. };
  39. //监听消息
  40. /**
  41. * 参数1:队列名称
  42. * 参数2:是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
  43. * 参数3:消息接收到后回调
  44. */
  45. channel.basicConsume(Producer.QUEUE_NAME, true, consumer);
  46. //不关闭资源,应该一直监听消息
  47. //channel.close();
  48. //connection.close();
  49. }
  50. }

3.4. 小结

上述的入门案例中中其实使用的是如下的简单模式:
image.png

在上图的模型中,有以下概念:

  • P:生产者,也就是要发送消息的程序
  • C:消费者:消息的接受者,会一直等待消息到来。
  • queue:消息队列,图中红色部分。类似一个邮箱,可以缓存消息;生产者向其中投递消息,消费者从其中取出消息。

4. AMQP

4.1. 相关概念介绍

AMQP 一个提供统一消息服务的应用层标准高级消息队列协议,是应用层协议的一个开放标准,为面向消息的中间件设计。

AMQP是一个二进制协议,拥有一些现代化特点:多信道、协商式,异步,安全,扩平台,中立,高效。

RabbitMQ是AMQP协议的Erlang的实现。

概念 说明
连接Connection 一个网络连接,比如TCP/IP套接字连接。
会话Session 端点之间的命名对话。在一个会话上下文中,保证“恰好传递一次”。
信道Channel 多路复用连接中的一条独立的双向数据流通道。为会话提供物理传输介质。
客户端Client AMQP连接或者会话的发起者。AMQP是非对称的,客户端生产和消费消息,服务器存储和路由这些消息。
服务节点Broker 消息中间件的服务节点;一般情况下可以将一个RabbitMQ Broker看作一台RabbitMQ 服务器。
端点 AMQP对话的任意一方。一个AMQP连接包括两个端点(一个是客户端,一个是服务器)。
消费者Consumer 一个从消息队列里请求消息的客户端程序。
生产者Producer 一个向交换机发布消息的客户端应用程序。

4.2. RabbitMQ运转流程

在入门案例中:

  • 生产者发送消息
    1. 生产者创建连接(Connection),开启一个信道(Channel),连接到RabbitMQ Broker;
    2. 声明队列并设置属性;如是否排它,是否持久化,是否自动删除;
    3. 将路由键(空字符串)与队列绑定起来;
    4. 发送消息至RabbitMQ Broker;
    5. 关闭信道;
    6. 关闭连接;
  • 消费者接收消息
    1. 消费者创建连接(Connection),开启一个信道(Channel),连接到RabbitMQ Broker
    2. 向Broker 请求消费相应队列中的消息,设置相应的回调函数;
    3. 等待Broker回应闭关投递响应队列中的消息,消费者接收消息;
    4. 确认(ack,自动确认)接收到的消息;
    5. RabbitMQ从队列中删除相应已经被确认的消息;
    6. 关闭信道;
    7. 关闭连接;

image.png

4.3. 生产者流转过程说明

  1. 客户端与代理服务器Broker建立连接。会调用newConnection() 方法,这个方法会进一步封装Protocol Header 0-9-1 的报文头发送给Broker ,以此通知Broker 本次交互采用的是AMQPO-9-1 协议,紧接着Broker 返回Connection.Start 来建立连接,在连接的过程中涉及Connection.Start/.Start-OK 、Connection.Tune/.Tune-Ok ,Connection.Open/ .Open-Ok 这6 个命令的交互。
  2. 客户端调用connection.createChannel方法。此方法开启信道,其包装的channel.open命令发送给Broker,等待channel.basicPublish方法,对应的AMQP命令为Basic.Publish,这个命令包含了content Header 和content Body()。content Header 包含了消息体的属性,例如:投递模式,优先级等,content Body 包含了消息体本身。
  3. 客户端发送完消息需要关闭资源时,涉及到Channel.Close和Channl.Close-Ok 与Connetion.Close和Connection.Close-Ok的命令交互。

image.png

4.4. 消费者流转过程说明

  1. 消费者客户端与代理服务器Broker建立连接。会调用newConnection() 方法,这个方法会进一步封装Protocol Header 0-9-1 的报文头发送给Broker ,以此通知Broker 本次交互采用的是AMQPO-9-1 协议,紧接着Broker 返回Connection.Start 来建立连接,在连接的过程中涉及Connection.Start/.Start-OK 、Connection.Tune/.Tune-Ok ,Connection.Open/ .Open-Ok 这6 个命令的交互。
  2. 消费者客户端调用connection.createChannel方法。和生产者客户端一样,协议涉及Channel . Open/Open-Ok命令。
  3. 在真正消费之前,消费者客户端需要向Broker 发送Basic.Consume 命令(即调用channel.basicConsume 方法〉将Channel 置为接收模式,之后Broker 回执Basic . Consume - Ok 以告诉消费者客户端准备好消费消息。
  4. Broker 向消费者客户端推送(Push) 消息,即Basic.Deliver 命令,这个命令和Basic.Publish 命令一样会携带Content Header 和Content Body。
  5. 消费者接收到消息并正确消费之后,向Broker 发送确认,即Basic.Ack 命令。
  6. 客户端发送完消息需要关闭资源时,涉及到Channel.Close和Channl.Close-Ok 与Connetion.Close和Connection.Close-Ok的命令交互。

image.png

5. RabbitMQ工作模式

4.1. Work queues工作队列模式

4.1.1. 模式说明

image.png

Work Queues与入门程序的简单模式相比,多了一个或一些消费端,多个消费端共同消费同一个队列中的消息。

应用场景:对于 任务过重或任务较多情况使用工作队列可以提高任务处理的速度。

4.1.2. 代码

Work Queues与入门程序的简单模式的代码是几乎一样的;可以完全复制,并复制多一个消费者进行多个消费者同时消费消息的测试。

1)生产者

  1. package com.itheima.rabbitmq.work;
  2. import com.itheima.rabbitmq.util.ConnectionUtil;
  3. import com.rabbitmq.client.Channel;
  4. import com.rabbitmq.client.Connection;
  5. import com.rabbitmq.client.ConnectionFactory;
  6. public class Producer {
  7. static final String QUEUE_NAME = "work_queue";
  8. public static void main(String[] args) throws Exception {
  9. //创建连接
  10. Connection connection = ConnectionUtil.getConnection();
  11. // 创建频道
  12. Channel channel = connection.createChannel();
  13. // 声明(创建)队列
  14. /**
  15. * 参数1:队列名称
  16. * 参数2:是否定义持久化队列
  17. * 参数3:是否独占本次连接
  18. * 参数4:是否在不使用的时候自动删除队列
  19. * 参数5:队列其它参数
  20. */
  21. channel.queueDeclare(QUEUE_NAME, true, false, false, null);
  22. for (int i = 1; i <= 30; i++) {
  23. // 发送信息
  24. String message = "你好;小兔子!work模式--" + i;
  25. /**
  26. * 参数1:交换机名称,如果没有指定则使用默认Default Exchage
  27. * 参数2:路由key,简单模式可以传递队列名称
  28. * 参数3:消息其它属性
  29. * 参数4:消息内容
  30. */
  31. channel.basicPublish("", QUEUE_NAME, null, message.getBytes());
  32. System.out.println("已发送消息:" + message);
  33. }
  34. // 关闭资源
  35. channel.close();
  36. connection.close();
  37. }
  38. }

image.png

2)消费者1

  1. package com.itheima.rabbitmq.work;
  2. import com.itheima.rabbitmq.util.ConnectionUtil;
  3. import com.rabbitmq.client.*;
  4. import java.io.IOException;
  5. public class Consumer1 {
  6. public static void main(String[] args) throws Exception {
  7. Connection connection = ConnectionUtil.getConnection();
  8. // 创建频道
  9. Channel channel = connection.createChannel();
  10. // 声明(创建)队列
  11. /**
  12. * 参数1:队列名称
  13. * 参数2:是否定义持久化队列
  14. * 参数3:是否独占本次连接
  15. * 参数4:是否在不使用的时候自动删除队列
  16. * 参数5:队列其它参数
  17. */
  18. channel.queueDeclare(Producer.QUEUE_NAME, true, false, false, null);
  19. //一次只能接收并处理一个消息
  20. channel.basicQos(1);
  21. //创建消费者;并设置消息处理
  22. DefaultConsumer consumer = new DefaultConsumer(channel){
  23. @Override
  24. /**
  25. * consumerTag 消息者标签,在channel.basicConsume时候可以指定
  26. * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
  27. * properties 属性信息
  28. * body 消息
  29. */
  30. public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
  31. try {
  32. //路由key
  33. System.out.println("路由key为:" + envelope.getRoutingKey());
  34. //交换机
  35. System.out.println("交换机为:" + envelope.getExchange());
  36. //消息id
  37. System.out.println("消息id为:" + envelope.getDeliveryTag());
  38. //收到的消息
  39. System.out.println("消费者1-接收到的消息为:" + new String(body, "utf-8"));
  40. Thread.sleep(1000);
  41. //确认消息
  42. channel.basicAck(envelope.getDeliveryTag(), false);
  43. } catch (InterruptedException e) {
  44. e.printStackTrace();
  45. }
  46. }
  47. };
  48. //监听消息
  49. /**
  50. * 参数1:队列名称
  51. * 参数2:是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
  52. * 参数3:消息接收到后回调
  53. */
  54. channel.basicConsume(Producer.QUEUE_NAME, false, consumer);
  55. }
  56. }

3)消费者2

  1. package com.itheima.rabbitmq.work;
  2. import com.itheima.rabbitmq.util.ConnectionUtil;
  3. import com.rabbitmq.client.*;
  4. import java.io.IOException;
  5. public class Consumer2 {
  6. public static void main(String[] args) throws Exception {
  7. Connection connection = ConnectionUtil.getConnection();
  8. // 创建频道
  9. Channel channel = connection.createChannel();
  10. // 声明(创建)队列
  11. /**
  12. * 参数1:队列名称
  13. * 参数2:是否定义持久化队列
  14. * 参数3:是否独占本次连接
  15. * 参数4:是否在不使用的时候自动删除队列
  16. * 参数5:队列其它参数
  17. */
  18. channel.queueDeclare(Producer.QUEUE_NAME, true, false, false, null);
  19. //一次只能接收并处理一个消息
  20. channel.basicQos(1);
  21. //创建消费者;并设置消息处理
  22. DefaultConsumer consumer = new DefaultConsumer(channel){
  23. @Override
  24. /**
  25. * consumerTag 消息者标签,在channel.basicConsume时候可以指定
  26. * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
  27. * properties 属性信息
  28. * body 消息
  29. */
  30. public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
  31. try {
  32. //路由key
  33. System.out.println("路由key为:" + envelope.getRoutingKey());
  34. //交换机
  35. System.out.println("交换机为:" + envelope.getExchange());
  36. //消息id
  37. System.out.println("消息id为:" + envelope.getDeliveryTag());
  38. //收到的消息
  39. System.out.println("消费者2-接收到的消息为:" + new String(body, "utf-8"));
  40. Thread.sleep(1000);
  41. //确认消息
  42. channel.basicAck(envelope.getDeliveryTag(), false);
  43. } catch (InterruptedException e) {
  44. e.printStackTrace();
  45. }
  46. }
  47. };
  48. //监听消息
  49. /**
  50. * 参数1:队列名称
  51. * 参数2:是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
  52. * 参数3:消息接收到后回调
  53. */
  54. channel.basicConsume(Producer.QUEUE_NAME, false, consumer);
  55. }
  56. }

4.1.3. 测试

启动两个消费者,然后再启动生产者发送消息;到IDEA的两个消费者对应的控制台查看是否竞争性的接收到消息。
image.png
image.png

4.1.4. 小结

在一个队列中如果有多个消费者,那么消费者之间对于同一个消息的关系是竞争的关系。

4.2. 订阅模式类型

订阅模式示例图:

image.png

前面2个案例中,只有3个角色:

  • P:生产者,也就是要发送消息的程序
  • C:消费者:消息的接受者,会一直等待消息到来。
  • queue:消息队列,图中红色部分

而在订阅模型中,多了一个exchange角色,而且过程略有变化:

  • P:生产者,也就是要发送消息的程序,但是不再发送到队列中,而是发给X(交换机)
  • C:消费者,消息的接受者,会一直等待消息到来。
  • Queue:消息队列,接收消息、缓存消息。
  • Exchange:交换机,图中的X。一方面,接收生产者发送的消息。另一方面,知道如何处理消息,例如递交给某个特别队列、递交给所有队列、或是将消息丢弃。到底如何操作,取决于Exchange的类型。Exchange有常见以下3种类型:
    • Fanout:广播,将消息交给所有绑定到交换机的队列
    • Direct:定向,把消息交给符合指定routing key 的队列
    • Topic:通配符,把消息交给符合routing pattern(路由模式) 的队列

Exchange(交换机)只负责转发消息,不具备存储消息的能力,因此如果没有任何队列与Exchange绑定,或者没有符合路由规则的队列,那么消息会丢失!

4.3. Publish/Subscribe发布与订阅模式

4.3.1. 模式说明

image.png

发布订阅模式:
1、每个消费者监听自己的队列。
2、生产者将消息发给broker,由交换机将消息转发到绑定此交换机的每个队列,每个绑定交换机的队列都将接收
到消息

4.3.2. 代码

1)生产者

  1. package com.itheima.rabbitmq.ps;
  2. import com.itheima.rabbitmq.util.ConnectionUtil;
  3. import com.rabbitmq.client.BuiltinExchangeType;
  4. import com.rabbitmq.client.Channel;
  5. import com.rabbitmq.client.Connection;
  6. /**
  7. * 发布与订阅使用的交换机类型为:fanout
  8. */
  9. public class Producer {
  10. //交换机名称
  11. static final String FANOUT_EXCHAGE = "fanout_exchange";
  12. //队列名称
  13. static final String FANOUT_QUEUE_1 = "fanout_queue_1";
  14. //队列名称
  15. static final String FANOUT_QUEUE_2 = "fanout_queue_2";
  16. public static void main(String[] args) throws Exception {
  17. //创建连接
  18. Connection connection = ConnectionUtil.getConnection();
  19. // 创建频道
  20. Channel channel = connection.createChannel();
  21. /**
  22. * 声明交换机
  23. * 参数1:交换机名称
  24. * 参数2:交换机类型,fanout、topic、direct、headers
  25. */
  26. channel.exchangeDeclare(FANOUT_EXCHAGE, BuiltinExchangeType.FANOUT);
  27. // 声明(创建)队列
  28. /**
  29. * 参数1:队列名称
  30. * 参数2:是否定义持久化队列
  31. * 参数3:是否独占本次连接
  32. * 参数4:是否在不使用的时候自动删除队列
  33. * 参数5:队列其它参数
  34. */
  35. channel.queueDeclare(FANOUT_QUEUE_1, true, false, false, null);
  36. channel.queueDeclare(FANOUT_QUEUE_2, true, false, false, null);
  37. //队列绑定交换机
  38. channel.queueBind(FANOUT_QUEUE_1, FANOUT_EXCHAGE, "");
  39. channel.queueBind(FANOUT_QUEUE_2, FANOUT_EXCHAGE, "");
  40. for (int i = 1; i <= 10; i++) {
  41. // 发送信息
  42. String message = "你好;小兔子!发布订阅模式--" + i;
  43. /**
  44. * 参数1:交换机名称,如果没有指定则使用默认Default Exchage
  45. * 参数2:路由key,简单模式可以传递队列名称
  46. * 参数3:消息其它属性
  47. * 参数4:消息内容
  48. */
  49. channel.basicPublish(FANOUT_EXCHAGE, "", null, message.getBytes());
  50. System.out.println("已发送消息:" + message);
  51. }
  52. // 关闭资源
  53. channel.close();
  54. connection.close();
  55. }
  56. }

2)消费者1

  1. package com.itheima.rabbitmq.ps;
  2. import com.itheima.rabbitmq.util.ConnectionUtil;
  3. import com.rabbitmq.client.*;
  4. import java.io.IOException;
  5. public class Consumer1 {
  6. public static void main(String[] args) throws Exception {
  7. Connection connection = ConnectionUtil.getConnection();
  8. // 创建频道
  9. Channel channel = connection.createChannel();
  10. //声明交换机
  11. channel.exchangeDeclare(Producer.FANOUT_EXCHAGE, BuiltinExchangeType.FANOUT);
  12. // 声明(创建)队列
  13. /**
  14. * 参数1:队列名称
  15. * 参数2:是否定义持久化队列
  16. * 参数3:是否独占本次连接
  17. * 参数4:是否在不使用的时候自动删除队列
  18. * 参数5:队列其它参数
  19. */
  20. channel.queueDeclare(Producer.FANOUT_QUEUE_1, true, false, false, null);
  21. //队列绑定交换机
  22. channel.queueBind(Producer.FANOUT_QUEUE_1, Producer.FANOUT_EXCHAGE, "");
  23. //创建消费者;并设置消息处理
  24. DefaultConsumer consumer = new DefaultConsumer(channel){
  25. @Override
  26. /**
  27. * consumerTag 消息者标签,在channel.basicConsume时候可以指定
  28. * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
  29. * properties 属性信息
  30. * body 消息
  31. */
  32. public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
  33. //路由key
  34. System.out.println("路由key为:" + envelope.getRoutingKey());
  35. //交换机
  36. System.out.println("交换机为:" + envelope.getExchange());
  37. //消息id
  38. System.out.println("消息id为:" + envelope.getDeliveryTag());
  39. //收到的消息
  40. System.out.println("消费者1-接收到的消息为:" + new String(body, "utf-8"));
  41. }
  42. };
  43. //监听消息
  44. /**
  45. * 参数1:队列名称
  46. * 参数2:是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
  47. * 参数3:消息接收到后回调
  48. */
  49. channel.basicConsume(Producer.FANOUT_QUEUE_1, true, consumer);
  50. }
  51. }

3)消费者2

  1. package com.itheima.rabbitmq.ps;
  2. import com.itheima.rabbitmq.util.ConnectionUtil;
  3. import com.rabbitmq.client.*;
  4. import java.io.IOException;
  5. public class Consumer2 {
  6. public static void main(String[] args) throws Exception {
  7. Connection connection = ConnectionUtil.getConnection();
  8. // 创建频道
  9. Channel channel = connection.createChannel();
  10. //声明交换机
  11. channel.exchangeDeclare(Producer.FANOUT_EXCHAGE, BuiltinExchangeType.FANOUT);
  12. // 声明(创建)队列
  13. /**
  14. * 参数1:队列名称
  15. * 参数2:是否定义持久化队列
  16. * 参数3:是否独占本次连接
  17. * 参数4:是否在不使用的时候自动删除队列
  18. * 参数5:队列其它参数
  19. */
  20. channel.queueDeclare(Producer.FANOUT_QUEUE_2, true, false, false, null);
  21. //队列绑定交换机
  22. channel.queueBind(Producer.FANOUT_QUEUE_2, Producer.FANOUT_EXCHAGE, "");
  23. //创建消费者;并设置消息处理
  24. DefaultConsumer consumer = new DefaultConsumer(channel){
  25. @Override
  26. /**
  27. * consumerTag 消息者标签,在channel.basicConsume时候可以指定
  28. * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
  29. * properties 属性信息
  30. * body 消息
  31. */
  32. public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
  33. //路由key
  34. System.out.println("路由key为:" + envelope.getRoutingKey());
  35. //交换机
  36. System.out.println("交换机为:" + envelope.getExchange());
  37. //消息id
  38. System.out.println("消息id为:" + envelope.getDeliveryTag());
  39. //收到的消息
  40. System.out.println("消费者2-接收到的消息为:" + new String(body, "utf-8"));
  41. }
  42. };
  43. //监听消息
  44. /**
  45. * 参数1:队列名称
  46. * 参数2:是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
  47. * 参数3:消息接收到后回调
  48. */
  49. channel.basicConsume(Producer.FANOUT_QUEUE_2, true, consumer);
  50. }
  51. }

4.3.3. 测试

启动所有消费者,然后使用生产者发送消息;在每个消费者对应的控制台可以查看到生产者发送的所有消息;到达广播的效果。

在执行完测试代码后,其实到RabbitMQ的管理后台找到Exchanges选项卡,点击 fanout_exchange 的交换机,可以查看到如下的绑定:

image.png

4.3.4. 小结

交换机需要与队列进行绑定,绑定之后;一个消息可以被多个消费者都收到。

发布订阅模式与工作队列模式的区别

1、工作队列模式不用定义交换机,而发布/订阅模式需要定义交换机。

2、发布/订阅模式的生产方是面向交换机发送消息,工作队列模式的生产方是面向队列发送消息(底层使用默认交换机)。

3、发布/订阅模式需要设置队列和交换机的绑定,工作队列模式不需要设置,实际上工作队列模式会将队列绑 定到默认的交换机 。

4.4. Routing路由模式

4.4.1. 模式说明

路由模式特点:

  • 队列与交换机的绑定,不能是任意绑定了,而是要指定一个RoutingKey(路由key)
  • 消息的发送方在 向 Exchange发送消息时,也必须指定消息的 RoutingKey
  • Exchange不再把消息交给每一个绑定的队列,而是根据消息的Routing Key进行判断,只有队列的Routingkey与消息的 Routing key完全一致,才会接收到消息

image.png

图解:

  • P:生产者,向Exchange发送消息,发送消息时,会指定一个routing key。
  • X:Exchange(交换机),接收生产者的消息,然后把消息递交给 与routing key完全匹配的队列
  • C1:消费者,其所在队列指定了需要routing key 为 error 的消息
  • C2:消费者,其所在队列指定了需要routing key 为 info、error、warning 的消息

4.4.2. 代码

在编码上与 Publish/Subscribe发布与订阅模式 的区别是交换机的类型为:Direct,还有队列绑定交换机的时候需要指定routing key。

1)生产者

  1. package com.itheima.rabbitmq.routing;
  2. import com.itheima.rabbitmq.util.ConnectionUtil;
  3. import com.rabbitmq.client.BuiltinExchangeType;
  4. import com.rabbitmq.client.Channel;
  5. import com.rabbitmq.client.Connection;
  6. /**
  7. * 路由模式的交换机类型为:direct
  8. */
  9. public class Producer {
  10. //交换机名称
  11. static final String DIRECT_EXCHAGE = "direct_exchange";
  12. //队列名称
  13. static final String DIRECT_QUEUE_INSERT = "direct_queue_insert";
  14. //队列名称
  15. static final String DIRECT_QUEUE_UPDATE = "direct_queue_update";
  16. public static void main(String[] args) throws Exception {
  17. //创建连接
  18. Connection connection = ConnectionUtil.getConnection();
  19. // 创建频道
  20. Channel channel = connection.createChannel();
  21. /**
  22. * 声明交换机
  23. * 参数1:交换机名称
  24. * 参数2:交换机类型,fanout、topic、direct、headers
  25. */
  26. channel.exchangeDeclare(DIRECT_EXCHAGE, BuiltinExchangeType.DIRECT);
  27. // 声明(创建)队列
  28. /**
  29. * 参数1:队列名称
  30. * 参数2:是否定义持久化队列
  31. * 参数3:是否独占本次连接
  32. * 参数4:是否在不使用的时候自动删除队列
  33. * 参数5:队列其它参数
  34. */
  35. channel.queueDeclare(DIRECT_QUEUE_INSERT, true, false, false, null);
  36. channel.queueDeclare(DIRECT_QUEUE_UPDATE, true, false, false, null);
  37. //队列绑定交换机
  38. channel.queueBind(DIRECT_QUEUE_INSERT, DIRECT_EXCHAGE, "insert");
  39. channel.queueBind(DIRECT_QUEUE_UPDATE, DIRECT_EXCHAGE, "update");
  40. // 发送信息
  41. String message = "新增了商品。路由模式;routing key 为 insert " ;
  42. /**
  43. * 参数1:交换机名称,如果没有指定则使用默认Default Exchage
  44. * 参数2:路由key,简单模式可以传递队列名称
  45. * 参数3:消息其它属性
  46. * 参数4:消息内容
  47. */
  48. channel.basicPublish(DIRECT_EXCHAGE, "insert", null, message.getBytes());
  49. System.out.println("已发送消息:" + message);
  50. // 发送信息
  51. message = "修改了商品。路由模式;routing key 为 update" ;
  52. /**
  53. * 参数1:交换机名称,如果没有指定则使用默认Default Exchage
  54. * 参数2:路由key,简单模式可以传递队列名称
  55. * 参数3:消息其它属性
  56. * 参数4:消息内容
  57. */
  58. channel.basicPublish(DIRECT_EXCHAGE, "update", null, message.getBytes());
  59. System.out.println("已发送消息:" + message);
  60. // 关闭资源
  61. channel.close();
  62. connection.close();
  63. }
  64. }

2)消费者1

  1. package com.itheima.rabbitmq.routing;
  2. import com.itheima.rabbitmq.util.ConnectionUtil;
  3. import com.rabbitmq.client.*;
  4. import java.io.IOException;
  5. public class Consumer1 {
  6. public static void main(String[] args) throws Exception {
  7. Connection connection = ConnectionUtil.getConnection();
  8. // 创建频道
  9. Channel channel = connection.createChannel();
  10. //声明交换机
  11. channel.exchangeDeclare(Producer.DIRECT_EXCHAGE, BuiltinExchangeType.DIRECT);
  12. // 声明(创建)队列
  13. /**
  14. * 参数1:队列名称
  15. * 参数2:是否定义持久化队列
  16. * 参数3:是否独占本次连接
  17. * 参数4:是否在不使用的时候自动删除队列
  18. * 参数5:队列其它参数
  19. */
  20. channel.queueDeclare(Producer.DIRECT_QUEUE_INSERT, true, false, false, null);
  21. //队列绑定交换机
  22. channel.queueBind(Producer.DIRECT_QUEUE_INSERT, Producer.DIRECT_EXCHAGE, "insert");
  23. //创建消费者;并设置消息处理
  24. DefaultConsumer consumer = new DefaultConsumer(channel){
  25. @Override
  26. /**
  27. * consumerTag 消息者标签,在channel.basicConsume时候可以指定
  28. * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
  29. * properties 属性信息
  30. * body 消息
  31. */
  32. public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
  33. //路由key
  34. System.out.println("路由key为:" + envelope.getRoutingKey());
  35. //交换机
  36. System.out.println("交换机为:" + envelope.getExchange());
  37. //消息id
  38. System.out.println("消息id为:" + envelope.getDeliveryTag());
  39. //收到的消息
  40. System.out.println("消费者1-接收到的消息为:" + new String(body, "utf-8"));
  41. }
  42. };
  43. //监听消息
  44. /**
  45. * 参数1:队列名称
  46. * 参数2:是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
  47. * 参数3:消息接收到后回调
  48. */
  49. channel.basicConsume(Producer.DIRECT_QUEUE_INSERT, true, consumer);
  50. }
  51. }

3)消费者2

  1. package com.itheima.rabbitmq.routing;
  2. import com.itheima.rabbitmq.util.ConnectionUtil;
  3. import com.rabbitmq.client.*;
  4. import java.io.IOException;
  5. public class Consumer2 {
  6. public static void main(String[] args) throws Exception {
  7. Connection connection = ConnectionUtil.getConnection();
  8. // 创建频道
  9. Channel channel = connection.createChannel();
  10. //声明交换机
  11. channel.exchangeDeclare(Producer.DIRECT_EXCHAGE, BuiltinExchangeType.DIRECT);
  12. // 声明(创建)队列
  13. /**
  14. * 参数1:队列名称
  15. * 参数2:是否定义持久化队列
  16. * 参数3:是否独占本次连接
  17. * 参数4:是否在不使用的时候自动删除队列
  18. * 参数5:队列其它参数
  19. */
  20. channel.queueDeclare(Producer.DIRECT_QUEUE_UPDATE, true, false, false, null);
  21. //队列绑定交换机
  22. channel.queueBind(Producer.DIRECT_QUEUE_UPDATE, Producer.DIRECT_EXCHAGE, "update");
  23. //创建消费者;并设置消息处理
  24. DefaultConsumer consumer = new DefaultConsumer(channel){
  25. @Override
  26. /**
  27. * consumerTag 消息者标签,在channel.basicConsume时候可以指定
  28. * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
  29. * properties 属性信息
  30. * body 消息
  31. */
  32. public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
  33. //路由key
  34. System.out.println("路由key为:" + envelope.getRoutingKey());
  35. //交换机
  36. System.out.println("交换机为:" + envelope.getExchange());
  37. //消息id
  38. System.out.println("消息id为:" + envelope.getDeliveryTag());
  39. //收到的消息
  40. System.out.println("消费者2-接收到的消息为:" + new String(body, "utf-8"));
  41. }
  42. };
  43. //监听消息
  44. /**
  45. * 参数1:队列名称
  46. * 参数2:是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
  47. * 参数3:消息接收到后回调
  48. */
  49. channel.basicConsume(Producer.DIRECT_QUEUE_UPDATE, true, consumer);
  50. }
  51. }

4.4.3. 测试

启动所有消费者,然后使用生产者发送消息;在消费者对应的控制台可以查看到生产者发送对应routing key对应队列的消息;到达按照需要接收的效果。

在执行完测试代码后,其实到RabbitMQ的管理后台找到Exchanges选项卡,点击 direct_exchange 的交换机,可以查看到如下的绑定:

image.png

4.4.4. 小结

Routing模式要求队列在绑定交换机时要指定routing key,消息会转发到符合routing key的队列。

4.5. Topics通配符模式

4.5.1. 模式说明

Topic类型与Direct相比,都是可以根据RoutingKey把消息路由到不同的队列。只不过Topic类型Exchange可以让队列在绑定Routing key 的时候使用通配符

Routingkey 一般都是有一个或多个单词组成,多个单词之间以”.”分割,例如: item.insert

通配符规则:

#:匹配一个或多个词

*:匹配不多不少恰好1个词

举例:

item.#:能够匹配item.insert.abc 或者 item.insert

item.*:只能匹配item.insert

image.png
image.png

图解:

  • 红色Queue:绑定的是usa.# ,因此凡是以 usa.开头的routing key 都会被匹配到
  • 黄色Queue:绑定的是#.news ,因此凡是以 .news结尾的 routing key 都会被匹配

4.5.2. 代码

1)生产者

使用topic类型的Exchange,发送消息的routing key有3种: item.insertitem.updateitem.delete

  1. package com.itheima.rabbitmq.topic;
  2. import com.itheima.rabbitmq.util.ConnectionUtil;
  3. import com.rabbitmq.client.BuiltinExchangeType;
  4. import com.rabbitmq.client.Channel;
  5. import com.rabbitmq.client.Connection;
  6. /**
  7. * 通配符Topic的交换机类型为:topic
  8. */
  9. public class Producer {
  10. //交换机名称
  11. static final String TOPIC_EXCHAGE = "topic_exchange";
  12. //队列名称
  13. static final String TOPIC_QUEUE_1 = "topic_queue_1";
  14. //队列名称
  15. static final String TOPIC_QUEUE_2 = "topic_queue_2";
  16. public static void main(String[] args) throws Exception {
  17. //创建连接
  18. Connection connection = ConnectionUtil.getConnection();
  19. // 创建频道
  20. Channel channel = connection.createChannel();
  21. /**
  22. * 声明交换机
  23. * 参数1:交换机名称
  24. * 参数2:交换机类型,fanout、topic、topic、headers
  25. */
  26. channel.exchangeDeclare(TOPIC_EXCHAGE, BuiltinExchangeType.TOPIC);
  27. // 发送信息
  28. String message = "新增了商品。Topic模式;routing key 为 item.insert " ;
  29. channel.basicPublish(TOPIC_EXCHAGE, "item.insert", null, message.getBytes());
  30. System.out.println("已发送消息:" + message);
  31. // 发送信息
  32. message = "修改了商品。Topic模式;routing key 为 item.update" ;
  33. channel.basicPublish(TOPIC_EXCHAGE, "item.update", null, message.getBytes());
  34. System.out.println("已发送消息:" + message);
  35. // 发送信息
  36. message = "删除了商品。Topic模式;routing key 为 item.delete" ;
  37. channel.basicPublish(TOPIC_EXCHAGE, "item.delete", null, message.getBytes());
  38. System.out.println("已发送消息:" + message);
  39. // 关闭资源
  40. channel.close();
  41. connection.close();
  42. }
  43. }

2)消费者1

接收两种类型的消息:更新商品和删除商品

  1. package com.itheima.rabbitmq.topic;
  2. import com.itheima.rabbitmq.util.ConnectionUtil;
  3. import com.rabbitmq.client.*;
  4. import java.io.IOException;
  5. public class Consumer1 {
  6. public static void main(String[] args) throws Exception {
  7. Connection connection = ConnectionUtil.getConnection();
  8. // 创建频道
  9. Channel channel = connection.createChannel();
  10. //声明交换机
  11. channel.exchangeDeclare(Producer.TOPIC_EXCHAGE, BuiltinExchangeType.TOPIC);
  12. // 声明(创建)队列
  13. /**
  14. * 参数1:队列名称
  15. * 参数2:是否定义持久化队列
  16. * 参数3:是否独占本次连接
  17. * 参数4:是否在不使用的时候自动删除队列
  18. * 参数5:队列其它参数
  19. */
  20. channel.queueDeclare(Producer.TOPIC_QUEUE_1, true, false, false, null);
  21. //队列绑定交换机
  22. channel.queueBind(Producer.TOPIC_QUEUE_1, Producer.TOPIC_EXCHAGE, "item.update");
  23. channel.queueBind(Producer.TOPIC_QUEUE_1, Producer.TOPIC_EXCHAGE, "item.delete");
  24. //创建消费者;并设置消息处理
  25. DefaultConsumer consumer = new DefaultConsumer(channel){
  26. @Override
  27. /**
  28. * consumerTag 消息者标签,在channel.basicConsume时候可以指定
  29. * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
  30. * properties 属性信息
  31. * body 消息
  32. */
  33. public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
  34. //路由key
  35. System.out.println("路由key为:" + envelope.getRoutingKey());
  36. //交换机
  37. System.out.println("交换机为:" + envelope.getExchange());
  38. //消息id
  39. System.out.println("消息id为:" + envelope.getDeliveryTag());
  40. //收到的消息
  41. System.out.println("消费者1-接收到的消息为:" + new String(body, "utf-8"));
  42. }
  43. };
  44. //监听消息
  45. /**
  46. * 参数1:队列名称
  47. * 参数2:是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
  48. * 参数3:消息接收到后回调
  49. */
  50. channel.basicConsume(Producer.TOPIC_QUEUE_1, true, consumer);
  51. }
  52. }

3)消费者2

接收所有类型的消息:新增商品,更新商品和删除商品。

  1. package com.itheima.rabbitmq.topic;
  2. import com.itheima.rabbitmq.util.ConnectionUtil;
  3. import com.rabbitmq.client.*;
  4. import java.io.IOException;
  5. public class Consumer2 {
  6. public static void main(String[] args) throws Exception {
  7. Connection connection = ConnectionUtil.getConnection();
  8. // 创建频道
  9. Channel channel = connection.createChannel();
  10. //声明交换机
  11. channel.exchangeDeclare(Producer.TOPIC_EXCHAGE, BuiltinExchangeType.TOPIC);
  12. // 声明(创建)队列
  13. /**
  14. * 参数1:队列名称
  15. * 参数2:是否定义持久化队列
  16. * 参数3:是否独占本次连接
  17. * 参数4:是否在不使用的时候自动删除队列
  18. * 参数5:队列其它参数
  19. */
  20. channel.queueDeclare(Producer.TOPIC_QUEUE_2, true, false, false, null);
  21. //队列绑定交换机
  22. channel.queueBind(Producer.TOPIC_QUEUE_2, Producer.TOPIC_EXCHAGE, "item.*");
  23. //创建消费者;并设置消息处理
  24. DefaultConsumer consumer = new DefaultConsumer(channel){
  25. @Override
  26. /**
  27. * consumerTag 消息者标签,在channel.basicConsume时候可以指定
  28. * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
  29. * properties 属性信息
  30. * body 消息
  31. */
  32. public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
  33. //路由key
  34. System.out.println("路由key为:" + envelope.getRoutingKey());
  35. //交换机
  36. System.out.println("交换机为:" + envelope.getExchange());
  37. //消息id
  38. System.out.println("消息id为:" + envelope.getDeliveryTag());
  39. //收到的消息
  40. System.out.println("消费者2-接收到的消息为:" + new String(body, "utf-8"));
  41. }
  42. };
  43. //监听消息
  44. /**
  45. * 参数1:队列名称
  46. * 参数2:是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
  47. * 参数3:消息接收到后回调
  48. */
  49. channel.basicConsume(Producer.TOPIC_QUEUE_2, true, consumer);
  50. }
  51. }

4.5.3. 测试

启动所有消费者,然后使用生产者发送消息;在消费者对应的控制台可以查看到生产者发送对应routing key对应队列的消息;到达按照需要接收的效果;并且这些routing key可以使用通配符。

在执行完测试代码后,其实到RabbitMQ的管理后台找到Exchanges选项卡,点击 topic_exchange 的交换机,可以查看到如下的绑定:

image.png

4.5.4. 小结

Topic主题模式可以实现 Publish/Subscribe发布与订阅模式Routing路由模式 的功能;只是Topic在配置routing key 的时候可以使用通配符,显得更加灵活。

4.6. 模式总结

RabbitMQ工作模式:
1、简单模式 HelloWorld
一个生产者、一个消费者,不需要设置交换机(使用默认的交换机)

2、工作队列模式 Work Queue
一个生产者、多个消费者(竞争关系),不需要设置交换机(使用默认的交换机)

3、发布订阅模式 Publish/subscribe
需要设置类型为fanout的交换机,并且交换机和队列进行绑定,当发送消息到交换机后,交换机会将消息发送到绑定的队列

4、路由模式 Routing
需要设置类型为direct的交换机,交换机和队列进行绑定,并且指定routing key,当发送消息到交换机后,交换机会根据routing key将消息发送到对应的队列

5、通配符模式 Topic
需要设置类型为topic的交换机,交换机和队列进行绑定,并且指定通配符方式的routing key,当发送消息到交换机后,交换机会根据routing key将消息发送到对应的队列

5. Spring 整合RabbitMQ

5.1. 搭建生产者工程

5.1.1. 创建工程

image.png

image.png

5.1.2. 添加依赖

修改pom.xml文件内容为如下:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.itheima</groupId>
  7. <artifactId>spring-rabbitmq-producer</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <dependencies>
  10. <dependency>
  11. <groupId>org.springframework</groupId>
  12. <artifactId>spring-context</artifactId>
  13. <version>5.1.7.RELEASE</version>
  14. </dependency>
  15. <dependency>
  16. <groupId>org.springframework.amqp</groupId>
  17. <artifactId>spring-rabbit</artifactId>
  18. <version>2.1.8.RELEASE</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>junit</groupId>
  22. <artifactId>junit</artifactId>
  23. <version>4.12</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework</groupId>
  27. <artifactId>spring-test</artifactId>
  28. <version>5.1.7.RELEASE</version>
  29. </dependency>
  30. </dependencies>
  31. </project>

5.1.3. 配置整合

  1. 创建spring-rabbitmq-producer\src\main\resources\properties\rabbitmq.properties连接参数等配置文件;
  1. rabbitmq.host=192.168.12.135
  2. rabbitmq.port=5672
  3. rabbitmq.username=heima
  4. rabbitmq.password=heima
  5. rabbitmq.virtual-host=/itcast
  1. 创建 spring-rabbitmq-producer\src\main\resources\spring\spring-rabbitmq.xml 整合配置文件;
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:rabbit="http://www.springframework.org/schema/rabbit"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans
  7. http://www.springframework.org/schema/beans/spring-beans.xsd
  8. http://www.springframework.org/schema/context
  9. https://www.springframework.org/schema/context/spring-context.xsd
  10. http://www.springframework.org/schema/rabbit
  11. http://www.springframework.org/schema/rabbit/spring-rabbit.xsd">
  12. <!--加载配置文件-->
  13. <context:property-placeholder location="classpath:properties/rabbitmq.properties"/>
  14. <!-- 定义rabbitmq connectionFactory -->
  15. <rabbit:connection-factory id="connectionFactory" host="${rabbitmq.host}"
  16. port="${rabbitmq.port}"
  17. username="${rabbitmq.username}"
  18. password="${rabbitmq.password}"
  19. virtual-host="${rabbitmq.virtual-host}"/>
  20. <!--定义管理交换机、队列-->
  21. <rabbit:admin connection-factory="connectionFactory"/>
  22. <!--定义持久化队列,不存在则自动创建;不绑定到交换机则绑定到默认交换机
  23. 默认交换机类型为direct,名字为:"",路由键为队列的名称
  24. -->
  25. <rabbit:queue id="spring_queue" name="spring_queue" auto-declare="true"/>
  26. <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~广播;所有队列都能收到消息~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
  27. <!--定义广播交换机中的持久化队列,不存在则自动创建-->
  28. <rabbit:queue id="spring_fanout_queue_1" name="spring_fanout_queue_1" auto-declare="true"/>
  29. <!--定义广播交换机中的持久化队列,不存在则自动创建-->
  30. <rabbit:queue id="spring_fanout_queue_2" name="spring_fanout_queue_2" auto-declare="true"/>
  31. <!--定义广播类型交换机;并绑定上述两个队列-->
  32. <rabbit:fanout-exchange id="spring_fanout_exchange" name="spring_fanout_exchange" auto-declare="true">
  33. <rabbit:bindings>
  34. <rabbit:binding queue="spring_fanout_queue_1"/>
  35. <rabbit:binding queue="spring_fanout_queue_2"/>
  36. </rabbit:bindings>
  37. </rabbit:fanout-exchange>
  38. <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~通配符;*匹配一个单词,#匹配多个单词 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
  39. <!--定义广播交换机中的持久化队列,不存在则自动创建-->
  40. <rabbit:queue id="spring_topic_queue_star" name="spring_topic_queue_star" auto-declare="true"/>
  41. <!--定义广播交换机中的持久化队列,不存在则自动创建-->
  42. <rabbit:queue id="spring_topic_queue_well" name="spring_topic_queue_well" auto-declare="true"/>
  43. <!--定义广播交换机中的持久化队列,不存在则自动创建-->
  44. <rabbit:queue id="spring_topic_queue_well2" name="spring_topic_queue_well2" auto-declare="true"/>
  45. <rabbit:topic-exchange id="spring_topic_exchange" name="spring_topic_exchange" auto-declare="true">
  46. <rabbit:bindings>
  47. <rabbit:binding pattern="heima.*" queue="spring_topic_queue_star"/>
  48. <rabbit:binding pattern="heima.#" queue="spring_topic_queue_well"/>
  49. <rabbit:binding pattern="itcast.#" queue="spring_topic_queue_well2"/>
  50. </rabbit:bindings>
  51. </rabbit:topic-exchange>
  52. <!--定义rabbitTemplate对象操作可以在代码中方便发送消息-->
  53. <rabbit:template id="rabbitTemplate" connection-factory="connectionFactory"/>
  54. </beans>

5.1.4. 发送消息

创建测试文件 spring-rabbitmq-producer\src\test\java\com\itheima\rabbitmq\ProducerTest.java

  1. @RunWith(SpringJUnit4ClassRunner.class)
  2. @ContextConfiguration(locations = "classpath:spring/spring-rabbitmq.xml")
  3. public class ProducerTest {
  4. @Autowired
  5. private RabbitTemplate rabbitTemplate;
  6. /**
  7. * 只发队列消息
  8. * 默认交换机类型为 direct
  9. * 交换机的名称为空,路由键为队列的名称
  10. */
  11. @Test
  12. public void queueTest(){
  13. //路由键与队列同名
  14. rabbitTemplate.convertAndSend("spring_queue", "只发队列spring_queue的消息。");
  15. }
  16. /**
  17. * 发送广播
  18. * 交换机类型为 fanout
  19. * 绑定到该交换机的所有队列都能够收到消息
  20. */
  21. @Test
  22. public void fanoutTest(){
  23. /**
  24. * 参数1:交换机名称
  25. * 参数2:路由键名(广播设置为空)
  26. * 参数3:发送的消息内容
  27. */
  28. rabbitTemplate.convertAndSend("spring_fanout_exchange", "", "发送到spring_fanout_exchange交换机的广播消息");
  29. }
  30. /**
  31. * 通配符
  32. * 交换机类型为 topic
  33. * 匹配路由键的通配符,*表示一个单词,#表示多个单词
  34. * 绑定到该交换机的匹配队列能够收到对应消息
  35. */
  36. @Test
  37. public void topicTest(){
  38. /**
  39. * 参数1:交换机名称
  40. * 参数2:路由键名
  41. * 参数3:发送的消息内容
  42. */
  43. rabbitTemplate.convertAndSend("spring_topic_exchange", "heima.bj", "发送到spring_topic_exchange交换机heima.bj的消息");
  44. rabbitTemplate.convertAndSend("spring_topic_exchange", "heima.bj.1", "发送到spring_topic_exchange交换机heima.bj.1的消息");
  45. rabbitTemplate.convertAndSend("spring_topic_exchange", "heima.bj.2", "发送到spring_topic_exchange交换机heima.bj.2的消息");
  46. rabbitTemplate.convertAndSend("spring_topic_exchange", "itcast.cn", "发送到spring_topic_exchange交换机itcast.cn的消息");
  47. }
  48. }

5.2. 搭建消费者工程

5.2.1. 创建工程

image.png

image.png

5.2.2. 添加依赖

修改pom.xml文件内容为如下:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.itheima</groupId>
  7. <artifactId>spring-rabbitmq-consumer</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <dependencies>
  10. <dependency>
  11. <groupId>org.springframework</groupId>
  12. <artifactId>spring-context</artifactId>
  13. <version>5.1.7.RELEASE</version>
  14. </dependency>
  15. <dependency>
  16. <groupId>org.springframework.amqp</groupId>
  17. <artifactId>spring-rabbit</artifactId>
  18. <version>2.1.8.RELEASE</version>
  19. </dependency>
  20. </dependencies>
  21. </project>

5.2.3. 配置整合

  1. 创建spring-rabbitmq-consumer\src\main\resources\properties\rabbitmq.properties连接参数等配置文件;
  1. rabbitmq.host=192.168.12.135
  2. rabbitmq.port=5672
  3. rabbitmq.username=heima
  4. rabbitmq.password=heima
  5. rabbitmq.virtual-host=/itcast
  1. 创建 spring-rabbitmq-consumer\src\main\resources\spring\spring-rabbitmq.xml 整合配置文件;
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:rabbit="http://www.springframework.org/schema/rabbit"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans
  7. http://www.springframework.org/schema/beans/spring-beans.xsd
  8. http://www.springframework.org/schema/context
  9. https://www.springframework.org/schema/context/spring-context.xsd
  10. http://www.springframework.org/schema/rabbit
  11. http://www.springframework.org/schema/rabbit/spring-rabbit.xsd">
  12. <!--加载配置文件-->
  13. <context:property-placeholder location="classpath:properties/rabbitmq.properties"/>
  14. <!-- 定义rabbitmq connectionFactory -->
  15. <rabbit:connection-factory id="connectionFactory" host="${rabbitmq.host}"
  16. port="${rabbitmq.port}"
  17. username="${rabbitmq.username}"
  18. password="${rabbitmq.password}"
  19. virtual-host="${rabbitmq.virtual-host}"/>
  20. <bean id="springQueueListener" class="com.itheima.rabbitmq.listener.SpringQueueListener"/>
  21. <bean id="fanoutListener1" class="com.itheima.rabbitmq.listener.FanoutListener1"/>
  22. <bean id="fanoutListener2" class="com.itheima.rabbitmq.listener.FanoutListener2"/>
  23. <bean id="topicListenerStar" class="com.itheima.rabbitmq.listener.TopicListenerStar"/>
  24. <bean id="topicListenerWell" class="com.itheima.rabbitmq.listener.TopicListenerWell"/>
  25. <bean id="topicListenerWell2" class="com.itheima.rabbitmq.listener.TopicListenerWell2"/>
  26. <rabbit:listener-container connection-factory="connectionFactory" auto-declare="true">
  27. <rabbit:listener ref="springQueueListener" queue-names="spring_queue"/>
  28. <rabbit:listener ref="fanoutListener1" queue-names="spring_fanout_queue_1"/>
  29. <rabbit:listener ref="fanoutListener2" queue-names="spring_fanout_queue_2"/>
  30. <rabbit:listener ref="topicListenerStar" queue-names="spring_topic_queue_star"/>
  31. <rabbit:listener ref="topicListenerWell" queue-names="spring_topic_queue_well"/>
  32. <rabbit:listener ref="topicListenerWell2" queue-names="spring_topic_queue_well2"/>
  33. </rabbit:listener-container>
  34. </beans>

5.2.4. 消息监听器

1)队列监听器

创建 spring-rabbitmq-consumer\src\main\java\com\itheima\rabbitmq\listener\SpringQueueListener.java

  1. public class SpringQueueListener implements MessageListener {
  2. public void onMessage(Message message) {
  3. try {
  4. String msg = new String(message.getBody(), "utf-8");
  5. System.out.printf("接收路由名称为:%s,路由键为:%s,队列名为:%s的消息:%s \n",
  6. message.getMessageProperties().getReceivedExchange(),
  7. message.getMessageProperties().getReceivedRoutingKey(),
  8. message.getMessageProperties().getConsumerQueue(),
  9. msg);
  10. } catch (Exception e) {
  11. e.printStackTrace();
  12. }
  13. }
  14. }

2)广播监听器1

创建 spring-rabbitmq-consumer\src\main\java\com\itheima\rabbitmq\listener\FanoutListener1.java

  1. public class FanoutListener1 implements MessageListener {
  2. public void onMessage(Message message) {
  3. try {
  4. String msg = new String(message.getBody(), "utf-8");
  5. System.out.printf("广播监听器1:接收路由名称为:%s,路由键为:%s,队列名为:%s的消息:%s \n",
  6. message.getMessageProperties().getReceivedExchange(),
  7. message.getMessageProperties().getReceivedRoutingKey(),
  8. message.getMessageProperties().getConsumerQueue(),
  9. msg);
  10. } catch (Exception e) {
  11. e.printStackTrace();
  12. }
  13. }
  14. }

3)广播监听器2

创建 spring-rabbitmq-consumer\src\main\java\com\itheima\rabbitmq\listener\FanoutListener2.java

  1. public class FanoutListener2 implements MessageListener {
  2. public void onMessage(Message message) {
  3. try {
  4. String msg = new String(message.getBody(), "utf-8");
  5. System.out.printf("广播监听器2:接收路由名称为:%s,路由键为:%s,队列名为:%s的消息:%s \n",
  6. message.getMessageProperties().getReceivedExchange(),
  7. message.getMessageProperties().getReceivedRoutingKey(),
  8. message.getMessageProperties().getConsumerQueue(),
  9. msg);
  10. } catch (Exception e) {
  11. e.printStackTrace();
  12. }
  13. }
  14. }

4)星号通配符监听器

创建 spring-rabbitmq-consumer\src\main\java\com\itheima\rabbitmq\listener\TopicListenerStar.java

  1. public class TopicListenerStar implements MessageListener {
  2. public void onMessage(Message message) {
  3. try {
  4. String msg = new String(message.getBody(), "utf-8");
  5. System.out.printf("通配符*监听器:接收路由名称为:%s,路由键为:%s,队列名为:%s的消息:%s \n",
  6. message.getMessageProperties().getReceivedExchange(),
  7. message.getMessageProperties().getReceivedRoutingKey(),
  8. message.getMessageProperties().getConsumerQueue(),
  9. msg);
  10. } catch (Exception e) {
  11. e.printStackTrace();
  12. }
  13. }
  14. }

5)井号通配符监听器

创建 spring-rabbitmq-consumer\src\main\java\com\itheima\rabbitmq\listener\TopicListenerWell.java

  1. public class TopicListenerWell implements MessageListener {
  2. public void onMessage(Message message) {
  3. try {
  4. String msg = new String(message.getBody(), "utf-8");
  5. System.out.printf("通配符#监听器:接收路由名称为:%s,路由键为:%s,队列名为:%s的消息:%s \n",
  6. message.getMessageProperties().getReceivedExchange(),
  7. message.getMessageProperties().getReceivedRoutingKey(),
  8. message.getMessageProperties().getConsumerQueue(),
  9. msg);
  10. } catch (Exception e) {
  11. e.printStackTrace();
  12. }
  13. }
  14. }

6)井号通配符监听器2

创建 spring-rabbitmq-consumer\src\main\java\com\itheima\rabbitmq\listener\TopicListenerWell2.java

  1. public class TopicListenerWell2 implements MessageListener {
  2. public void onMessage(Message message) {
  3. try {
  4. String msg = new String(message.getBody(), "utf-8");
  5. System.out.printf("通配符#监听器2:接收路由名称为:%s,路由键为:%s,队列名为:%s的消息:%s \n",
  6. message.getMessageProperties().getReceivedExchange(),
  7. message.getMessageProperties().getReceivedRoutingKey(),
  8. message.getMessageProperties().getConsumerQueue(),
  9. msg);
  10. } catch (Exception e) {
  11. e.printStackTrace();
  12. }
  13. }
  14. }

6. Spring Boot整合RabbitMQ

6.1. 简介

在Spring项目中,可以使用Spring-Rabbit去操作RabbitMQ
https://github.com/spring-projects/spring-amqp

尤其是在spring boot项目中只需要引入对应的amqp启动器依赖即可,方便的使用RabbitTemplate发送消息,使用注解接收消息。

一般在开发过程中

生产者工程:

  1. application.yml文件配置RabbitMQ相关信息;
  2. 在生产者工程中编写配置类,用于创建交换机和队列,并进行绑定
  3. 注入RabbitTemplate对象,通过RabbitTemplate对象发送消息到交换机

消费者工程:

  1. application.yml文件配置RabbitMQ相关信息
  2. 创建消息处理类,用于接收队列中的消息并进行处理

5.2. 搭建生产者工程

5.2.1. 创建工程

创建生产者工程springboot-rabbitmq-producer

image.png

image.png

5.2.2. 添加依赖

修改pom.xml文件内容为如下:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.1.4.RELEASE</version>
  10. </parent>
  11. <groupId>com.itheima</groupId>
  12. <artifactId>springboot-rabbitmq-producer</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-amqp</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-test</artifactId>
  22. </dependency>
  23. </dependencies>
  24. </project>

5.2.3. 启动类

  1. package com.itheima.rabbitmq;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. @SpringBootApplication
  5. public class ProducerApplication {
  6. public static void main(String[] args) {
  7. SpringApplication.run(ProducerApplication.class);
  8. }
  9. }

5.2.4. 配置RabbitMQ

1)配置文件

创建application.yml,内容如下:

  1. spring:
  2. rabbitmq:
  3. host: localhost
  4. port: 5672
  5. virtual-host: /itcast
  6. username: heima
  7. password: heima

2)绑定交换机和队列

创建RabbitMQ队列与交换机绑定的配置类com.itheima.rabbitmq.config.RabbitMQConfig

  1. package com.itheima.rabbitmq.config;
  2. import org.springframework.amqp.core.*;
  3. import org.springframework.beans.factory.annotation.Qualifier;
  4. import org.springframework.context.annotation.Bean;
  5. import org.springframework.context.annotation.Configuration;
  6. @Configuration
  7. public class RabbitMQConfig {
  8. //交换机名称
  9. public static final String ITEM_TOPIC_EXCHANGE = "item_topic_exchange";
  10. //队列名称
  11. public static final String ITEM_QUEUE = "item_queue";
  12. //声明交换机
  13. @Bean("itemTopicExchange")
  14. public Exchange topicExchange(){
  15. return ExchangeBuilder.topicExchange(ITEM_TOPIC_EXCHANGE).durable(true).build();
  16. }
  17. //声明队列
  18. @Bean("itemQueue")
  19. public Queue itemQueue(){
  20. return QueueBuilder.durable(ITEM_QUEUE).build();
  21. }
  22. //绑定队列和交换机
  23. @Bean
  24. public Binding itemQueueExchange(@Qualifier("itemQueue") Queue queue,
  25. @Qualifier("itemTopicExchange") Exchange exchange){
  26. return BindingBuilder.bind(queue).to(exchange).with("item.#").noargs();
  27. }
  28. }

5.3. 搭建消费者工程

5.3.1. 创建工程

创建消费者工程springboot-rabbitmq-consumer

image.png

image.png

5.3.2. 添加依赖

修改pom.xml文件内容为如下:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.1.4.RELEASE</version>
  10. </parent>
  11. <groupId>com.itheima</groupId>
  12. <artifactId>springboot-rabbitmq-consumer</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-amqp</artifactId>
  18. </dependency>
  19. </dependencies>
  20. </project>

5.3.3. 启动类

  1. package com.itheima.rabbitmq;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. @SpringBootApplication
  5. public class ConsumerApplication {
  6. public static void main(String[] args) {
  7. SpringApplication.run(ConsumerApplication.class);
  8. }
  9. }

5.3.4. 配置RabbitMQ

创建application.yml,内容如下:

  1. spring:
  2. rabbitmq:
  3. host: localhost
  4. port: 5672
  5. virtual-host: /itcast
  6. username: heima
  7. password: heima

5.3.5. 消息监听处理类

编写消息监听器com.itheima.rabbitmq.listener.MyListener

  1. package com.itheima.rabbitmq.listener;
  2. import org.springframework.amqp.rabbit.annotation.RabbitListener;
  3. import org.springframework.stereotype.Component;
  4. @Component
  5. public class MyListener {
  6. /**
  7. * 监听某个队列的消息
  8. * @param message 接收到的消息
  9. */
  10. @RabbitListener(queues = "item_queue")
  11. public void myListener1(String message){
  12. System.out.println("消费者接收到的消息为:" + message);
  13. }
  14. }

5.4. 测试

在生产者工程springboot-rabbitmq-producer中创建测试类,发送消息:

  1. package com.itheima.rabbitmq;
  2. import com.itheima.rabbitmq.config.RabbitMQConfig;
  3. import org.junit.Test;
  4. import org.junit.runner.RunWith;
  5. import org.springframework.amqp.rabbit.core.RabbitTemplate;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.boot.test.context.SpringBootTest;
  8. import org.springframework.test.context.junit4.SpringRunner;
  9. @RunWith(SpringRunner.class)
  10. @SpringBootTest
  11. public class RabbitMQTest {
  12. @Autowired
  13. private RabbitTemplate rabbitTemplate;
  14. @Test
  15. public void test(){
  16. rabbitTemplate.convertAndSend(RabbitMQConfig.ITEM_TOPIC_EXCHANGE, "item.insert", "商品新增,routing key 为item.insert");
  17. rabbitTemplate.convertAndSend(RabbitMQConfig.ITEM_TOPIC_EXCHANGE, "item.update", "商品修改,routing key 为item.update");
  18. rabbitTemplate.convertAndSend(RabbitMQConfig.ITEM_TOPIC_EXCHANGE, "item.delete", "商品删除,routing key 为item.delete");
  19. }
  20. }

先运行上述测试程序(交换机和队列才能先被声明和绑定),然后启动消费者;在消费者工程springboot-rabbitmq-consumer中控制台查看是否接收到对应消息。

另外;也可以在RabbitMQ的管理控制台中查看到交换机与队列的绑定:

image.png
附件:
RabbitMQ 讲义.zipRabbitMQ介绍.ppt