欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

RabbitMQ六种队列模式-路由模式

程序员文章站 2022-10-31 19:28:28
RabbitMQ六种队列模式-路由模式...

本文带大家了解 RabbitMQ 队列模式中的路由模式。

其实只要看过上篇发布模式后,相信路由模式上手就非常 easy 了,唯一差距就是两个参数,exchange类型和 routingKey 。

1、什么是路由模式

路由模式跟发布订阅模式类似,然后在订阅模式的基础上加上了类型,订阅模式是分发到所有绑定到交换机的队列,路由模式只分发到绑定在交换机上面指定路由键的队列,我们可以看一下下面这张图:

RabbitMQ六种队列模式-路由模式

P 表示为生产者、 X 表示交换机、C1C2 表示为消费者,红色表示队列。

上图是一个结合日志消费级别的配图,在路由模式它会把消息路由到那些 binding key 与 routing key 完全匹配的 Queue 中,此模式也就是 Exchange 模式中的 direct 模式。

以上图的配置为例,我们以 routingKey="error" 发送消息到 Exchange,则消息会路由到Queue1(amqp.gen-S9b…,这是由RabbitMQ自动生成的Queue名称)和Queue2(amqp.gen-Agl…)。如果我们以 routingKey="info" 或 routingKey="warning" 来发送消息,则消息只会路由到 Queue2。如果我们以其他 routingKey 发送消息,则消息不会路由到这两个 Queue 中。

相对于发布订阅模式,我们可以看到不再是广播似的接收全部消息,而是有选择性的消费。

2、代码部分

2.1 日志生产者

package com.shuofeng.producer;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.shuofeng.common.MQConnectionUtils;

public class ProdecerRouting {

	private static final String EXCHANGE_NAME = "my_fanout_exchange";
	
	public static void main(String[] args) throws IOException, TimeoutException {
		//1.创建新的连接
		Connection newConnection = MQConnectionUtils.newConnection();
		//2.创建通道
		Channel channel = newConnection.createChannel();
		//3.绑定交换机 参数一为交换机名字 参数二为分发类型
		channel.exchangeDeclare(EXCHANGE_NAME, "direct");
		//4.发送消息
		String message = "",sendType="";
		for(int i = 0;i < 10;i++) {
			if(i%2==0){
                sendType = "info";
                message = "我是 info 级别的消息类型:" + i;
            }else{
                sendType = "error";
                message = "我是 error 级别的消息类型:" + i;
            }
			System.out.println("[send]:" + message + "  " +sendType);
			channel.basicPublish(EXCHANGE_NAME, sendType, null, message.getBytes("UTF-8"));
			try {
				Thread.sleep(5 * i);
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
		//5.关闭通道
		channel.close();
		newConnection.close();
	}
	
}

2.2 info消费者

package com.shuofeng.customer;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.DefaultConsumer;
import com.rabbitmq.client.Envelope;
import com.rabbitmq.client.AMQP.BasicProperties;
import com.shuofeng.common.MQConnectionUtils;

public class ConsumerInfo {
	
	private static final String QUEUE_NAME = "consumer_info";
    private static final String EXCHANGE_NAME = "my_fanout_exchange";
    
    public static void main(String[] args) throws IOException, TimeoutException {
    	//1.创建新的连接
    	Connection newConnection = MQConnectionUtils.newConnection();
    	//2.创建通道
    	Channel channel = newConnection.createChannel();
    	//3.消费者关联队列
    	channel.queueDeclare(QUEUE_NAME, false, false, false, null);
    	//4.消费者绑定交换机 参数1 队列 参数2交换机 参数3 routingKey 
    	channel.queueBind(QUEUE_NAME, EXCHANGE_NAME, "info");
    	DefaultConsumer consumer = new DefaultConsumer(channel) {
    		@Override
    		public void handleDelivery(String consumerTag, Envelope envelope, BasicProperties properties, byte[] body)
    				throws IOException {
    			String msg = new String(body, "UTF-8");
                System.out.println("消费者获取生产者消息:" + msg);
    		}
    	};
       //5.消费者监听队列消息
    	channel.basicConsume(QUEUE_NAME, true, consumer);
	}
	
}

2.3 error消费者

package com.shuofeng.customer;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.DefaultConsumer;
import com.rabbitmq.client.Envelope;
import com.rabbitmq.client.AMQP.BasicProperties;
import com.shuofeng.common.MQConnectionUtils;

public class ConsumerError {

	private static final String QUEUE_NAME = "consumer_error";
    private static final String EXCHANGE_NAME = "my_fanout_exchange";
    
    public static void main(String[] args) throws IOException, TimeoutException {
    	//1.创建新的连接
    	Connection newConnection = MQConnectionUtils.newConnection();
    	//2.创建通道
    	Channel channel = newConnection.createChannel();
    	//3.消费者关联队列
    	channel.queueDeclare(QUEUE_NAME, false, false, false, null);
    	//4.消费者绑定交换机 参数1 队列 参数2交换机 参数3 routingKey 
    	channel.queueBind(QUEUE_NAME, EXCHANGE_NAME, "error");
    	DefaultConsumer consumer = new DefaultConsumer(channel) {
    		@Override
    		public void handleDelivery(String consumerTag, Envelope envelope, BasicProperties properties, byte[] body)
    				throws IOException {
    			String msg = new String(body, "UTF-8");
                System.out.println("消费者获取生产者消息:" + msg);
    		}
    	};
       //5.消费者监听队列消息
    	channel.basicConsume(QUEUE_NAME, true, consumer);
	}
	
}

2.4 运行截图

生产者

 

RabbitMQ六种队列模式-路由模式

info消费者

RabbitMQ六种队列模式-路由模式

error 消费者

RabbitMQ六种队列模式-路由模式

3、路由模式总结

1、两个队列消费者设置的路由不一样,接收到的消息就不一样。路由模式下,决定消息向队列推送的主要取决于路由,而不是交换机了。  

2、该模式必须设置交换机,且声明路由模式 channel.exchangeDeclare(EXCHANGE_NAME, "direct");

本文地址:https://blog.csdn.net/luoshisiji/article/details/110195484