赞
踩
该笔记大部分搬运B站编程不良人的RabbitMQ,顺便把图文合并记录,便于回顾,仅用于学习!
视频地址:https://www.bilibili.com/video/BV1dE411K7MG
作者真的非常好,别白嫖,记得三连 如有侵权,请联系删除!
七种消息模型:https://www.rabbitmq.com/getstarted.html
在上图的模型中,有以下概念:
P:生产者,也就是要发送消息的程序
C:消费者:消息的接受者,会一直等待消息到来。
queue:消息队列,图中红色部分。类似一个邮箱,
可以缓存消息;生产者向其中投递消息,消费者从其中取出消息。
应用场景:用户注册!
package com.example.rabbitmq; import com.rabbitmq.client.Channel; import com.rabbitmq.client.Connection; import com.rabbitmq.client.ConnectionFactory; import com.rabbitmq.client.MessageProperties; import org.junit.Test; import java.io.IOException; import java.nio.charset.StandardCharsets; import java.util.concurrent.TimeoutException; public class Provider { //生产消息 @Test public void testSendMessage() throws IOException, TimeoutException { //创建连接mq的连接工厂对象 ConnectionFactory connectionFactory = new ConnectionFactory(); //设置连接rabbitmq主机 connectionFactory.setHost("127.0.0.1"); //设置端口号 connectionFactory.setPort(5672); //设置连接那个虚拟主机 connectionFactory.setVirtualHost("/ems"); //设置访问虚拟主机的用户名和密码 connectionFactory.setUsername("ems"); connectionFactory.setPassword("123"); //获取连接对象 Connection connection = connectionFactory.newConnection(); //获取连接的通道 Channel channel = connection.createChannel(); //通道绑定对应消息队列 //参数1: 队列名称 如果队列不存在自动创建 //参数2: 用来定义队列特性是否要持久化 true 持久化队列 false 不持久化 //参数3: exclusive 是否独占队列 true 独占队列 false 不独占 //参数4: autoDelete: 是否在消费完成后自动删除队列 true 自动删除 false 不自动删除 //参数5: 额外附加参数 channel.queueDeclare("hello",true,false,false,null); //发布消息 //参数1: 交换机名称 参数2:队列名称 参数3:传递消息额外设置 参数4:消息的具体内容 channel.basicPublish("","hello", MessageProperties.PERSISTENT_TEXT_PLAIN,"hello rabbitmq".getBytes()); //关闭通道和连接 channel.close(); connection.close(); } }
查看连接:
package com.example.rabbitmq; import com.rabbitmq.client.*; import org.junit.Test; import java.io.IOException; import java.util.concurrent.TimeoutException; public class Customer { //消费消息 public static void main(String[] args) throws IOException, TimeoutException { //创建连接mq的连接工厂对象 ConnectionFactory connectionFactory = new ConnectionFactory(); //设置连接rabbitmq主机 connectionFactory.setHost("127.0.0.1"); //设置端口号 connectionFactory.setPort(5672); //设置连接那个虚拟主机 connectionFactory.setVirtualHost("/ems"); //设置访问虚拟主机的用户名和密码 connectionFactory.setUsername("ems"); connectionFactory.setPassword("123"); //获取连接对象 Connection connection = connectionFactory.newConnection(); //获取连接的通道 Channel channel = connection.createChannel(); //通道绑定对应消息队列 //参数1: 队列名称 如果队列不存在自动创建 //参数2: 用来定义队列特性是否要持久化 true 持久化队列 false 不持久化 不持久化的话,重启会丢失 //参数3: exclusive 是否独占队列 true 独占队列 false 不独占 //参数4: autoDelete: 是否在消费完成后自动删除队列 true 自动删除 false 不自动删除 //参数5: 额外附加参数 channel.queueDeclare("hello",false,false,false,null); //消费消息 //参数1: 交换机名称 参数2:开始消息的自动确认机制 参数3:消费时的回调接口 channel.basicConsume("hello",true,new DefaultConsumer(channel){ @Override//body消费的信息 public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException { System.out.println("new String(body) ==>"+ new String(body)); } }); //关闭通道和连接 channel.close(); connection.close(); } }
Junit测试中是不支持多线程模型的!
解决方案:https://blog.csdn.net/wxb880114/article/details/105854584/
Work queues,也被称为(Task queues)任务模型。当消息处理比较耗时的时候,可能生产消息的速度会远远大于消息的消费速度。长此以往,消息就会堆积越来越多,无法及时处理。此时就可以使用work 模型:让多个消费者绑定到一个队列,共同消费队列中的消息。队列中的消息一旦消费,就会消失,因此任务是不会被重复执行的。
角色:
P:生产者:任务的发布者
C1:消费者-1,领取任务并且完成任务,假设完成速度较慢
C2:消费者-2:领取任务并完成任务,假设完成速度快
import com.example.rabbitmq.utils.RabbitMQUtils; import com.rabbitmq.client.Channel; import com.rabbitmq.client.Connection; import com.rabbitmq.client.MessageProperties; import org.junit.Test; import java.io.IOException; import java.util.concurrent.TimeoutException; public class Provider { public static void main(String[] args) throws IOException { //获取连接对象 Connection connection = RabbitMQUtils.getConnection(); //获取连接的通道 Channel channel = connection.createChannel(); //通道绑定对应消息队列 //参数1: 队列名称 如果队列不存在自动创建 //参数2: 用来定义队列特性是否要持久化 true 持久化队列 false 不持久化 //参数3: exclusive 是否独占队列 true 独占队列 false 不独占 //参数4: autoDelete: 是否在消费完成后自动删除队列 true 自动删除 false 不自动删除 //参数5: 额外附加参数 channel.queueDeclare("test1",false,false,false,null); for (int i = 0; i <= 20; i++) { //发布消息 //参数1: 交换机名称 参数2:队列名称 MessageProperties.PERSISTENT_TEXT_PLAIN 消息持久化 参数3:传递消息额外设置 参数4:消息的具体内容 channel.basicPublish("","test1", MessageProperties.PERSISTENT_TEXT_PLAIN,(i+"hello rabbitmq").getBytes()); } //关闭通道和连接 RabbitMQUtils.closeConnectionAndChanel(channel,connection); } }
import com.example.rabbitmq.utils.RabbitMQUtils; import com.rabbitmq.client.*; import java.io.IOException; public class Customer1 { public static void main(String[] args) throws IOException { Connection connection = RabbitMQUtils.getConnection(); Channel channel = connection.createChannel(); channel.queueDeclare("test1",false,false,false,null); channel.basicConsume("test1",true,new DefaultConsumer(channel){ @Override public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException { System.out.println("消费者1:==>"+new String(body)); } }); } }
import com.example.rabbitmq.utils.RabbitMQUtils; import com.rabbitmq.client.*; import java.io.IOException; public class Customer2 { public static void main(String[] args) throws IOException { Connection connection = RabbitMQUtils.getConnection(); Channel channel = connection.createChannel(); channel.queueDeclare("test1",false,false,false,null); channel.basicConsume("test1",true,new DefaultConsumer(channel){ @Override public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException { try { Thread.sleep(2000); //处理消息比较慢 2秒处理一个消息 } catch (Exception e) { e.printStackTrace(); } System.out.println("消费者2:==>"+new String(body)); } }); } }
总结:
默认情况下,RabbitMQ将按顺序将每个消息发送给下一个使用者。平均而言,每个消费者都会收到相同数量
的消息。这种分发消息的方式称为循环。
缺点:消费被消费者获取后,队列自动确认消息被获取,而不知消息是否是真正的被消费。
针对以上问题,进行优化,关闭自动确认消息,手动确认。
自动确认机制了解:https://www.rabbitmq.com/tutorials/tutorial-two-java.html
import com.example.rabbitmq.utils.RabbitMQUtils; import com.rabbitmq.client.Channel; import com.rabbitmq.client.Connection; import com.rabbitmq.client.MessageProperties; import org.junit.Test; import java.io.IOException; import java.util.concurrent.TimeoutException; public class Provider { public static void main(String[] args) throws IOException { //获取连接对象 Connection connection = RabbitMQUtils.getConnection(); //获取连接的通道 Channel channel = connection.createChannel(); //通道绑定对应消息队列 //参数1: 队列名称 如果队列不存在自动创建 //参数2: 用来定义队列特性是否要持久化 true 持久化队列 false 不持久化 //参数3: exclusive 是否独占队列 true 独占队列 false 不独占 //参数4: autoDelete: 是否在消费完成后自动删除队列 true 自动删除 false 不自动删除 //参数5: 额外附加参数 channel.queueDeclare("test1",false,false,false,null); for (int i = 0; i <= 20; i++) { //发布消息 //参数1: 交换机名称 参数2:队列名称 MessageProperties.PERSISTENT_TEXT_PLAIN 消息持久化 参数3:传递消息额外设置 参数4:消息的具体内容 channel.basicPublish("","test1", MessageProperties.PERSISTENT_TEXT_PLAIN,(i+"hello rabbitmq").getBytes()); } //关闭通道和连接 RabbitMQUtils.closeConnectionAndChanel(channel,connection); } }
import com.example.rabbitmq.utils.RabbitMQUtils; import com.rabbitmq.client.*; import java.io.IOException; public class Customer3 { public static void main(String[] args) throws IOException { Connection connection = RabbitMQUtils.getConnection(); final Channel channel = connection.createChannel(); channel.basicQos(1);//每次只能消费一个信息 channel.queueDeclare("test1",false,false,false,null); channel.basicConsume("test1",false,new DefaultConsumer(channel){ @Override public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException { System.out.println("消费者1:==>"+new String(body)); //改为手动确认消息被消费 参数1:手动确认消息标识 参数2:false 每次确认一个 channel.basicAck(envelope.getDeliveryTag(), false); } }); } }
import com.example.rabbitmq.utils.RabbitMQUtils; import com.rabbitmq.client.*; import java.io.IOException; public class Customer4 { public static void main(String[] args) throws IOException { Connection connection = RabbitMQUtils.getConnection(); final Channel channel = connection.createChannel(); channel.basicQos(1); channel.queueDeclare("test1",false,false,false,null); channel.basicConsume("test1",true,new DefaultConsumer(channel){ @Override public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException { try { Thread.sleep(2000); //处理消息比较慢 2秒处理一个消息 } catch (Exception e) { e.printStackTrace(); } System.out.println("消费者2:==>"+new String(body)); channel.basicAck(envelope.getDeliveryTag(),false); } }); } }
总结:
1、设置通道一次只能消费一个消息
2、关闭消息的自动确认,开启手动确认消息
fanout 扇出 也称为广播
在广播模式下,消息发送流程是这样的:
可以有多个消费者
每个消费者有自己的queue(队列)
每个队列都要绑定到Exchange(交换机)
生产者发送的消息,只能发送到交换机,
交换机来决定要发给哪个队列,生产者无法决定。
交换机把消息发送给绑定过的所有队列
队列的消费者都能拿到消息。实现一条消息被多个消费者消费
import com.example.rabbitmq.utils.RabbitMQUtils; import com.rabbitmq.client.Channel; import com.rabbitmq.client.Connection; import com.rabbitmq.client.MessageProperties; import java.io.IOException; public class Provider { public static void main(String[] args) throws IOException { //获取连接对象 Connection connection = RabbitMQUtils.getConnection(); //获取连接的通道 Channel channel = connection.createChannel(); //通过通道绑定交换机 //参数1: 交换机名称 参数2: 交换机类型 fanout 广播类型 channel.exchangeDeclare("logs","fanout"); //发布消息 //参数1: 交换机名称 参数2:队列名称 MessageProperties.PERSISTENT_TEXT_PLAIN 消息持久化 参数3:传递消息额外设置 参数4:消息的具体内容 channel.basicPublish("logs","",null,"fanout type message".getBytes()); //关闭通道和连接 RabbitMQUtils.closeConnectionAndChanel(channel,connection); } }
消费者1和消费者2一样的代码
import com.example.rabbitmq.utils.RabbitMQUtils; import com.rabbitmq.client.*; import java.io.IOException; public class Customer1 { public static void main(String[] args) throws IOException { Connection connection = RabbitMQUtils.getConnection(); Channel channel = connection.createChannel(); //通道绑定交换机 channel.exchangeDeclare("logs","fanout"); //临时队列 String queueName = channel.queueDeclare().getQueue(); //绑定交换机和队列 channel.queueBind(queueName,"logs",""); //消费消息 channel.basicConsume(queueName,true,new DefaultConsumer(channel){ @Override public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException { System.out.println("消费者1:==>"+new String(body)); } }); } }
在Fanout模式中,一条消息,会被所有订阅的队列都消费。但是,在某些场景下,我们希望不同的消息被不同的队列消费。这时就要用到Direct类型的Exchange。
在Direct模型下:队列与交换机的绑定,不能是任意绑定了,而是要指定一个RoutingKey(路由key)消息的发送方在 向 Exchange发送消息时,
也必须指定消息的 RoutingKey。
Exchange不再把消息交给每一个绑定的队列,而是根据消息的Routing Key进行判断,只有队列的Routingkey与消息的 Routing key完全一致,
才会接收到消息
import com.example.rabbitmq.utils.RabbitMQUtils; import com.rabbitmq.client.Channel; import com.rabbitmq.client.Connection; import java.io.IOException; public class Provider { public static void main(String[] args) throws IOException { //获取连接对象 Connection connection = RabbitMQUtils.getConnection(); //获取连接的通道 Channel channel = connection.createChannel(); //通过通道绑定交换机 //参数1: 交换机名称 参数2: 交换机类型 fanout 广播类型 channel.exchangeDeclare("logs_direct","direct"); //发布消息 //参数1: 交换机名称 参数2:队列名称 MessageProperties.PERSISTENT_TEXT_PLAIN 消息持久化 参数3:传递消息额外设置 参数4:消息的具体内容 String routingkey = "info"; channel.basicPublish("logs_direct",routingkey,null,("这是direct模型发布的基于route key: ["+routingkey+"] 发送的消息").getBytes()); //关闭通道和连接 RabbitMQUtils.closeConnectionAndChanel(channel,connection); } }
消费者1和消费者2代码大致相同,只有routingkey不同;
import com.example.rabbitmq.utils.RabbitMQUtils; import com.rabbitmq.client.*; import java.io.IOException; public class Customer1 { public static void main(String[] args) throws IOException { Connection connection = RabbitMQUtils.getConnection(); Channel channel = connection.createChannel(); //通道绑定交换机 channel.exchangeDeclare("logs_direct","direct"); //临时队列 String queueName = channel.queueDeclare().getQueue(); //绑定交换机和队列 channel.queueBind(queueName,"logs_direct","error"); //消费消息 channel.basicConsume(queueName,true,new DefaultConsumer(channel){ @Override public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException { System.out.println("消费者1:==>"+new String(body)); } }); } }
Topic类型的Exchange与Direct相比,都是可以根据RoutingKey把消息路由到不同的队列。只不过Topic类型Exchange可以让
队列在绑定Routing key的时候使用通配符!这种模型Routingkey 一般都是由一个或多个单词组成,多个单词之间以”.”分割,
例如: item.insert
解决写太多路由的问题!
统配符
* (star) can substitute for exactly one word. 匹配不多不少恰好1个词
# (hash) can substitute for zero or more words. 匹配零个、一个或多个词
如:
audit.# 匹配audit、audit.irs 、或者audit.irs.corporate等
audit.* 只能匹配 audit.irs
import com.example.rabbitmq.utils.RabbitMQUtils; import com.rabbitmq.client.Channel; import com.rabbitmq.client.Connection; import java.io.IOException; public class Provider { public static void main(String[] args) throws IOException { //获取连接对象 Connection connection = RabbitMQUtils.getConnection(); //获取连接的通道 Channel channel = connection.createChannel(); //通过通道绑定交换机 //参数1: 交换机名称 参数2: 交换机类型 fanout 广播类型 channel.exchangeDeclare("topics","topic"); //发布消息 //参数1: 交换机名称 参数2:队列名称 MessageProperties.PERSISTENT_TEXT_PLAIN 消息持久化 参数3:传递消息额外设置 参数4:消息的具体内容 String routingkey = "save.user.delete"; channel.basicPublish("topics",routingkey,null,("这是topic模型发布的基于route key: ["+routingkey+"] 发送的消息").getBytes()); //关闭通道和连接 RabbitMQUtils.closeConnectionAndChanel(channel,connection); } }
import com.example.rabbitmq.utils.RabbitMQUtils; import com.rabbitmq.client.*; import java.io.IOException; public class Customer1 { public static void main(String[] args) throws IOException { Connection connection = RabbitMQUtils.getConnection(); Channel channel = connection.createChannel(); //通道绑定交换机 channel.exchangeDeclare("topics","topic"); //临时队列 String queueName = channel.queueDeclare().getQueue(); //绑定交换机和队列 channel.queueBind(queueName,"topics","*.user.*"); //消费消息 channel.basicConsume(queueName,true,new DefaultConsumer(channel){ @Override public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException { System.out.println("消费者1:==>"+new String(body)); } }); } }
import com.example.rabbitmq.utils.RabbitMQUtils; import com.rabbitmq.client.*; import java.io.IOException; public class Customer2 { public static void main(String[] args) throws IOException { Connection connection = RabbitMQUtils.getConnection(); Channel channel = connection.createChannel(); channel.exchangeDeclare("topics","topic"); //临时队列 String queueName = channel.queueDeclare().getQueue(); //绑定交换机和队列 channel.queueBind(queueName,"topics","*.user.#"); channel.basicConsume(queueName,true,new DefaultConsumer(channel){ @Override public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException { System.out.println("消费者2:==>"+new String(body)); } }); } }
其他两种暂时不了解!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。