赞
踩
* 广播模型:
* 一个交换机绑定多个队列
* 每个队列都有一个消费者
* 每个消费者消费自己队列中的消息,每个队列的信息是一样的
package com.example.demo02.mq.fanout;
import com.example.demo02.mq.util.ConnectionUtils;
import com.rabbitmq.client.BuiltinExchangeType;
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import java.io.IOException;
/**
* @author Allen
* 4/11/2024 8:24 AM
* @version 1.0
* @description: 广播模型发送者
*
* 广播模型:
* 一个交换机绑定多个队列
* 每个队列都有一个消费者
* 每个消费者消费自己队列中的消息,每个队列的信息是一样的
*/
public class FanoutSender {
public static void main(String[] args) throws Exception {
// 1:获取连接
Connection connection = ConnectionUtils.getConnection();
// 2:创建通道
Channel channel = connection.createChannel();
// 3:声明交换机
// 参数1:交换机名称 参数2:交换机类型 (fanout direct topic) 参数3:是否持久化
/*
fanout:广播模式
绑定了这个交换机的队列都会收到消息
direct:路由模式
通过路由键完全匹配的队列会收到消息
topic:通配符模式
通过通配符匹配的队列会收到消息
*/
channel.exchangeDeclare("fanout.exchange", BuiltinExchangeType.FANOUT,false);
// 交换机不会存储消息,只是负责消息的转发,如果没有队列绑定到交换机上,消息会丢失
// 4:发送消息到交换机:需要消费信息的消费者自己声明自己的队列绑定到当前交换机上
String msg = "fanout message";
channel.basicPublish("fanout.exchange", "", null, msg.getBytes());
// 5:关闭通道
channel.close();
// 6:关闭连接
connection.close();
}
}
package com.example.demo02.mq.fanout;
import com.example.demo02.mq.util.ConnectionUtils;
import com.rabbitmq.client.*;
import java.io.IOException;
/**
* @author Allen
* 4/11/2024 8:55 AM
* @version 1.0
* @description: 广播模型接收者
*/
public class FanoutReceiver1 {
public static void main(String[] args) throws Exception {
// 1:获取连接
Connection connection = ConnectionUtils.getConnection();
// 2:创建通道
Channel channel = connection.createChannel();
// 3:声明交换机
//为什么消费者也得声明交换机?如果消费者先启动,那么交换机还没有声明,消费者就会报错,所以消费者也得声明交换机
// 参数1:交换机名称 参数2:交换机类型 参数3:是否持久化
channel.exchangeDeclare("fanout.exchange", BuiltinExchangeType.FANOUT,false);
// 4:声明队列
// 参数1:队列名称 参数2:是否持久化 参数3:是否排他性 参数4:是否自动删除 参数5:其他参数
channel.queueDeclare("fanout.queue1", false, false, false, null);
// 5:绑定自己的队列到交换机
channel.queueBind("fanout.queue1", "fanout.exchange", "");
// 6:消费消息
Consumer consumer = new DefaultConsumer(channel){
@Override
// 参数1:消费者标签 参数2:消息传递参数 参数3: 参数4:消息内容
public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
// 消费消息
System.out.println("Fanout1接收到的消息是:" + new String(body));
// 手动确认消息
channel.basicAck(envelope.getDeliveryTag(),false);
}
};
channel.basicConsume("fanout.queue1",false,consumer);
}
}
package com.example.demo02.mq.fanout;
import com.example.demo02.mq.util.ConnectionUtils;
import com.rabbitmq.client.*;
import java.io.IOException;
/**
* @author Allen
* 4/11/2024 8:55 AM
* @version 1.0
* @description: 广播模型接收者
*/
public class FanoutReceiver2 {
public static void main(String[] args) throws Exception {
// 1:获取连接
Connection connection = ConnectionUtils.getConnection();
// 2:创建通道
Channel channel = connection.createChannel();
// 3:声明交换机
//为什么消费者也得声明交换机?如果消费者先启动,那么交换机还没有声明,消费者就会报错,所以消费者也得声明交换机
channel.exchangeDeclare("fanout.exchange", BuiltinExchangeType.FANOUT,false);
// 4:声明队列
// 参数1:队列名称 参数2:是否持久化 参数3:是否排他性 参数4:是否自动删除 参数5:其他参数
channel.queueDeclare("fanout.queue2", false, false, false, null);
// 5:绑定队列到交换机
channel.queueBind("fanout.queue2", "fanout.exchange", "");
// 6:消费消息
Consumer consumer = new DefaultConsumer(channel){
@Override
// 参数1:消费者标签 参数2:消息传递参数 参数3: 参数4:消息内容
public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
// 消费消息
System.out.println("Fanout2接收到的消息是:" + new String(body));
// 手动确认消息
channel.basicAck(envelope.getDeliveryTag(),false);
}
};
channel.basicConsume("fanout.queue2",false,consumer);
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。