RabitMQ-路由模型

使用案例

在这里插入图片描述
路由模型在生产者端在向交换器发送消息时指定消息的routingkey,不同的消息类型对应不同的routingkey,然后在消费者端声明临时的队列后,在绑定队列时指定routingkey(可以绑定多个)。通过交换机的路由模型,将相同routingkey对应起来就可以了。

编写路由模型的生产者代码

    // 路由模式生产者
    @Test
    void contextLoads4() throws IOException, TimeoutException {
        ConnectionFactory connectionFactory = new ConnectionFactory();
        connectionFactory.setPassword( "123" );
        connectionFactory.setPort( 5672 );
        connectionFactory.setVirtualHost( "/rabbitmq_zhj" );
        connectionFactory.setUsername( "admin" );
        connectionFactory.setHost( "106.15.73.43" );
        Connection connection = connectionFactory.newConnection();
        Channel channel = connection.createChannel();
        channel.exchangeDeclare( "direct_logs", "direct" );
        channel.basicPublish( "direct_logs", "error", MessageProperties.PERSISTENT_TEXT_PLAIN, "产生了Error的错误信息".getBytes() );
        channel.basicPublish( "direct_logs", "waring", MessageProperties.PERSISTENT_TEXT_PLAIN, "产生了Waring的错误信息".getBytes() );
        channel.close();
        connection.close();
    }

编写路由模型的消费者代码并运行

消费者1

    public static void main(String[] args) throws IOException, TimeoutException {
        ConnectionFactory connectionFactory = new ConnectionFactory();
        connectionFactory.setVirtualHost( "/rabbitmq_zhj" );
        connectionFactory.setPort( 5672 );
        connectionFactory.setHost( "106.15.73.43" );
        connectionFactory.setUsername( "admin" );
        connectionFactory.setPassword( "123" );
        Connection connection = connectionFactory.newConnection();
        Channel channel = connection.createChannel();
        channel.exchangeDeclare( "direct_logs", "direct" );
        String tempQueue = channel.queueDeclare().getQueue();
        channel.queueBind( tempQueue, "direct_logs", "error" );
        channel.basicConsume( tempQueue,true, new DefaultConsumer(channel){
            @Override
            public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
                System.out.println("Error打印:" + new String(body));
            }
        });
    }

消费者2

    public static void main(String[] args) throws IOException, TimeoutException {
        ConnectionFactory connectionFactory = new ConnectionFactory();
        connectionFactory.setVirtualHost( "/rabbitmq_zhj" );
        connectionFactory.setPort( 5672 );
        connectionFactory.setHost( "106.15.73.43" );
        connectionFactory.setUsername( "admin" );
        connectionFactory.setPassword( "123" );
        Connection connection = connectionFactory.newConnection();
        Channel channel = connection.createChannel();
        channel.exchangeDeclare( "direct_logs", "direct" );
        String tempQueue = channel.queueDeclare().getQueue();
        channel.queueBind( tempQueue, "direct_logs", "error" );
        channel.queueBind( tempQueue, "direct_logs", "waring" );
        channel.basicConsume( tempQueue,true, new DefaultConsumer(channel){
            @Override
            public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
                System.out.println("Error和Waring打印:" + new String(body));
            }
        });
    }

在这里插入图片描述
在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

临水而愚

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值