zoukankan      html  css  js  c++  java
  • spring boot整合RabbitMQ(Topic模式)

    1.Topic交换器介绍

    Topic Exchange 转发消息主要是根据通配符。 在这种交换机下,队列和交换机的绑定会定义一种路由模式,那么,通配符就要在这种路由模式和路由键之间匹配后交换机才能转发消息。
    在这种交换机模式下:
        路由键必须是一串字符,用句号(.) 隔开,比如说 agreements.us,或者 agreements.eu.stockholm 等。
        路由模式必须包含一个 星号(*),主要用于匹配路由键指定位置的一个单词,比如说,一个路由模式是这样子:agreements..b.*,那么就只能匹配路由键是这样子的:第一个单词是 agreements,第四个单词是 b。 井号(#)就表示相当于一个或者多个单词,例如一个匹配模式是agreements.eu.berlin.#,那么,以agreements.eu.berlin开头的路由键都是可以的。
    具体代码发送的时候还是一样,第一个参数表示交换机,第二个参数表示routing key,第三个参数即消息。如下:
    rabbitTemplate.convertAndSend("testTopicExchange","key1.a.c.key2", " this is  RabbitMQ!");

    topic 和 direct 类似, 只是匹配上支持了"模式", 在"点分"的 routing_key 形式中, 可以使用两个通配符:
    *表示一个词.
    #表示零个或多个词.

    如上图所示:此类交换器使得来自不同的源头的消息可以到达一个对列,其实说的更明白一点就是模糊匹配的意思,例如:上图中红色对列的routekey为usa.#,#代表匹配任意字符,但是要想消息能到达此对列,usa.必须匹配后面的#好可以随意。图中usa.news,usa.weather都能找到红色队列,符号“#”匹配一个或多个词,符号“”匹配不多不少一个词。因此“usa.#”能够匹配到“usa.news.XXX”,但是“usa.” 只会匹配到“usa.XXX”。
    注:交换器说到底是一个名称与队列绑定的列表。当消息发布到交换器时,实际上是由你所连接的信道,将消息路由键同交换器上绑定的列表进行比较,最后路由消息

    2.示例代码

    1).RabbitMQ的Topic的bean配置

    RabbitTopic.java类:

    package com.example.rabbitmqtopic;

    import org.springframework.amqp.core.Binding;
    import org.springframework.amqp.core.BindingBuilder;
    import org.springframework.amqp.core.Queue;
    import org.springframework.amqp.core.TopicExchange;
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;

    @Configuration
    public class RabbitTopic {
        final static String message = "topic.message";
        final static String messages = "topic.messages";
        //创建队列
        @Bean
        public Queue queueMessage() {
            return new Queue(RabbitTopic.message);
        }
        //创建队列
        @Bean
        public Queue queueMessages() {
            return new Queue(RabbitTopic.messages);
        }
        //创建交换器
        @Bean
        TopicExchange exchange() {
            return new TopicExchange("topicExchange");
        }
      //对列绑定并关联到ROUTINGKEY
        @Bean
        Binding bindingExchangeMessage(Queue queueMessage, TopicExchange exchange) {
            return BindingBuilder.bind(queueMessage).to(exchange).with("topic.message");
        }
       //对列绑定并关联到ROUTINGKEY
        @Bean
        Binding bindingExchangeMessages(Queue queueMessages, TopicExchange exchange) {
            return BindingBuilder.bind(queueMessages).to(exchange).with("topic.#");//*表示一个词,#表示零个或多个词
      }
    }
    2).消息生产者生产消息

    TopicSender.java类:

    package com.example.rabbitmqtopic.rabbitmq;

    import org.springframework.amqp.core.AmqpTemplate;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.stereotype.Component;

    @Component
    public class TopicSender {
        @Autowired
        private AmqpTemplate rabbitTemplate;

        public void send() {
            String context = "hi, i am message all";
            System.out.println("Sender : " + context);
            this.rabbitTemplate.convertAndSend("topicExchange", "topic.1", context);
        }

        public void send1() {
            String context = "hi, i am message 1";
            System.out.println("Sender : " + context);
            this.rabbitTemplate.convertAndSend("topicExchange", "topic.message", context);
        }

        public void send2() {
            String context = "hi, i am messages 2";
            System.out.println("Sender : " + context);
            this.rabbitTemplate.convertAndSend("topicExchange", "topic.messages", context);
      }
    }

    3).消息消费者

    TopicReceiver.java类:
    package com.example.rabbitmqtopic.rabbitmq;

    import org.springframework.amqp.rabbit.annotation.RabbitHandler;
    import org.springframework.amqp.rabbit.annotation.RabbitListener;
    import org.springframework.stereotype.Component;

    @Component
    @RabbitListener(queues = "topic.message")
    public class TopicReceiver {
        @RabbitHandler
        public void process(String message) {
            System.out.println("Topic Receiver1  : " + message);
        }
    }

    TopicReceiver2.java类:
    package com.example.rabbitmqtopic.rabbitmq;

    import org.springframework.amqp.rabbit.annotation.RabbitHandler;
    import org.springframework.amqp.rabbit.annotation.RabbitListener;
    import org.springframework.stereotype.Component;

    @Component
    @RabbitListener(queues = "topic.messages")
    public class TopicReceiver2 {
        @RabbitHandler
        public void process(String message) {
            System.out.println("Topic Receiver2  : " + message);
        }
    }

    4).测试

    RabbitMQTopicTest.java类:


    package com.example.rabbitmqtopic.rabbitmq;

    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.boot.test.context.SpringBootTest;
    import org.springframework.test.context.junit4.SpringRunner;

    @RunWith(SpringRunner.class)
    @SpringBootTest
    public class RabbitMQTopicTest {
        @Autowired
        private TopicSender sender;

        @Test
        public void topic() throws Exception {
            sender.send();
        }

        @Test
        public void topic1() throws Exception {
            sender.send1();
        }

        @Test
        public void topic2() throws Exception {
            sender.send2();
        }
    }

  • 相关阅读:
    POJ3171 线段树优化dp
    Codeforces Round #590 (Div. 3)
    POJ2777 线段树区间染色问题
    POJ2182 Lost Cows 树状数组,二分
    P1908 逆序对 树状数组
    2019 Multi-University Training Contest 3
    主席树板子题区间第k小
    权值线段树板子题
    KMP板子题
    稀疏贝叶斯
  • 原文地址:https://www.cnblogs.com/web424/p/6767314.html
Copyright © 2011-2022 走看看