RabbitMQ-动态路由模型

使用案例

在这里插入图片描述

统配符
* ( 匹配不多不少恰好1个词 )
# ( 匹配一个或多个词 )
如:
user.#   可以匹配user.info.name以及user.info等
user.*   只能匹配 user.info

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

    // 动态路由模式生产者
    @Test
    void contextLoads5() throws IOException, TimeoutException {
        ConnectionFactory connectionFactory = new ConnectionFactory();
        connectionFactory.setPassword("123");
        connectionFactory.setUsername("admin");
        connectionFactory.setHost("106.15.73.43");
        connectionFactory.setPort(5672);
        connectionFactory.setVirtualHost("/rabbitmq_zhj");
        Connection connection = connectionFactory.newConnection();
        Channel channel = connection.createChannel();
        channel.exchangeDeclare("topic_logs", "topic" );
        channel.basicPublish("topic_logs", "user.info" , MessageProperties.PERSISTENT_TEXT_PLAIN, "信息的routingkey是user.info".getBytes());
        channel.basicPublish("topic_logs", "user.info.log" , MessageProperties.PERSISTENT_TEXT_PLAIN, "信息的routingkey是user.info,log".getBytes());
        channel.close();
        connection.close();
    }

编写动态路由模型消费者的代码

消费者1
    public static void main(String[] args) throws IOException, TimeoutException {
        ConnectionFactory connectionFactory = new ConnectionFactory();
        connectionFactory.setVirtualHost("/rabbitmq_zhj");
        connectionFactory.setHost( "106.15.73.43" );
        connectionFactory.setPort( 5672 );
        connectionFactory.setUsername( "admin" );
        connectionFactory.setPassword( "123" );
        Connection connection = connectionFactory.newConnection();
        Channel channel = connection.createChannel();
        channel.exchangeDeclare( "topic_logs" , "topic" );
        String tempQueue = channel.queueDeclare().getQueue();
        channel.queueBind( tempQueue, "topic_logs", "user.#" );
        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("user.#的拦截信息为: " + new String(body));
            }
        });
    }
消费者2
    public static void main(String[] args) throws IOException, TimeoutException {
        ConnectionFactory connectionFactory = new ConnectionFactory();
        connectionFactory.setVirtualHost("/rabbitmq_zhj");
        connectionFactory.setHost( "106.15.73.43" );
        connectionFactory.setPort( 5672 );
        connectionFactory.setUsername( "admin" );
        connectionFactory.setPassword( "123" );
        Connection connection = connectionFactory.newConnection();
        Channel channel = connection.createChannel();
        channel.exchangeDeclare( "topic_logs" , "topic" );
        String tempQueue = channel.queueDeclare().getQueue();
        channel.queueBind( tempQueue, "topic_logs", "user.*" );
        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("user.*的拦截信息为: " + 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、付费专栏及课程。

余额充值