其他分享
首页 > 其他分享> > RabbitMQ——RabbitMQ的Topic消息模型

RabbitMQ——RabbitMQ的Topic消息模型

作者:互联网

文章目录

RabbitMQ——RabbitMQ的Topic消息模型

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

假设在一个日志系统中,如果我们使用Topic 交换机,我们可以根据日志的来源订阅日志,比如只想订阅来自“cron”的严重错误,也想订阅来自“kern”的所有日志,这会给我们很大的灵活性。

Topic消息模型的 Routingkey一般都是由一个或多个单词组成,多个单词之间以"."分割,例如:item.insert,最多为 255 个字节。

Routingkey使用通配符的规则:

如:

Topic消息模型结构

在这里插入图片描述

1、Topic消息模型之发布者发布消息

消息生产者的开发

消息发送者发送消息时指定的routingKey为 “user.save”

public class Provider {
    public static void main(String[] args) throws IOException, TimeoutException {
        Connection connection = ConnectUtils.getConnection("121.199.53.150", 5672, "/ems", "ems", "ems");
        Channel channel = connection.createChannel();
        //将通道绑定到交换机上,参数一:交换机名称,如果没有,会自动创建,参数二:交换机类型 topic交换机
        channel.exchangeDeclare("topics","topic");
        //定义RoutingKey
        String routingKey = "user.save";

        //发送消息
        channel.basicPublish("topics",routingKey, null,("topic rabbitmq,routingKey: "+routingKey).getBytes());
        channel.close();
        connection.close();
    }
}

2、Topic消息模型之消费者消费消息

消息消费者的开发

ConsumerA:ConsumerA队列的指定的routingKey为 user.*

public class ConsumerA {
    public static void main(String[] args) throws IOException {
        Connection connection = ConnectUtils.getConnection("121.199.53.150", 5672, "/ems", "ems", "ems");
        Channel channel = connection.createChannel();
        //声明与通道连接的交换机
        channel.exchangeDeclare("topics","topic");
        //创建临时队列
        String queue = channel.queueDeclare().getQueue();
        //通道绑定队列和交换机,user.*只能多匹配一个单词
        channel.queueBind(queue,"topics","user.*");

        //消费消息
        channel.basicConsume(queue,true,new DefaultConsumer(channel){
            @Override
            public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
                System.out.println("consumerA topic rabbitmq:" + new String(body)+ "routingKey:" + envelope.getRoutingKey());
            }
        });
    }
}

执行ConsumerA,监听队列中的消息,再执行消息生产者发送消息,查看控制台的输出信息:

在这里插入图片描述

ConsumerA队列的routingKey为user.*,可以匹配到消息发送者发送消息时指定的routingKey: “user.save”,所以ConsumerA能订阅到消息。

标签:routingKey,模型,RabbitMQ,Topic,交换机,消息,channel,user
来源: https://blog.csdn.net/wpc2018/article/details/122441423