RabbitMQ的五种模式

一、简单模式

简单模式(Simple):一个生产者,一个消费者

java 复制代码
package com.qiangesoft.rabbitmq.mode.simple;

import lombok.extern.slf4j.Slf4j;
import org.springframework.amqp.rabbit.annotation.Queue;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * 简单模式
 * ps:一个生产者,一个消费者
 *
 * @author qiangesoft
 * @date 2024-05-08
 */
@Slf4j
@RequestMapping("/simple")
@RestController
public class SimpleMode {

    private final String QUEUE = "simple.queue";

    @Autowired
    private RabbitTemplate rabbitTemplate;

    /**
     * 生产者
     */
    @GetMapping("/send")
    public void send(String message) {
        rabbitTemplate.convertAndSend(QUEUE, message);
    }

    /**
     * 消费者
     */
    @RabbitListener(queuesToDeclare = @Queue(name = QUEUE))
    public void receiveMessage(String message) {
        log.info("Received Message: " + message);
    }

}

二、工作模式

工作队列模式(Work Queue): 多个消费者竞争消息

java 复制代码
package com.qiangesoft.rabbitmq.mode.work;

import lombok.extern.slf4j.Slf4j;
import org.springframework.amqp.rabbit.annotation.Queue;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * 工作模式
 * ps:多个消费者竞争消息
 *
 * @author qiangesoft
 * @date 2024-05-08
 */
@Slf4j
@RequestMapping("/work")
@RestController
public class WorkMode {

    private final String QUEUE = "work.queue";

    @Autowired
    private RabbitTemplate rabbitTemplate;

    /**
     * 生产者
     */
    @GetMapping("/send")
    public void send(String message) {
        for (int i = 0; i < 10; i++) {
            rabbitTemplate.convertAndSend(QUEUE, message + i);
        }
    }

    /**
     * 消费者1
     */
    @RabbitListener(queuesToDeclare = @Queue(name = QUEUE))
    public void receiveMessage1(String message) {
        log.info("Received Message by consumer1: " + message);
    }

    /**
     * 消费者2
     */
    @RabbitListener(queuesToDeclare = @Queue(name = QUEUE))
    public void receiveMessage2(String message) {
        log.info("Received Message by consumer2: " + message);
    }

}

三、发布订阅模式

发布/订阅模式(Publish/Subscribe):一个生产者,多个消费者

java 复制代码
package com.qiangesoft.rabbitmq.mode.pubsub;

import lombok.extern.slf4j.Slf4j;
import org.springframework.amqp.core.ExchangeTypes;
import org.springframework.amqp.rabbit.annotation.Exchange;
import org.springframework.amqp.rabbit.annotation.Queue;
import org.springframework.amqp.rabbit.annotation.QueueBinding;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * 发布/订阅模式
 * ps:一个生产者,多个消费者
 *
 * @author qiangesoft
 * @date 2024-05-08
 */
@Slf4j
@RequestMapping("/pubsub")
@RestController
public class PubSubMode {

    private final String EXCHANGE = "fanout.exchange";

    private final String KEY = "";

    @Autowired
    private RabbitTemplate rabbitTemplate;

    /**
     * 生产者
     */
    @GetMapping("/send")
    public void sendM(String message) {
        rabbitTemplate.convertAndSend(EXCHANGE, KEY, message);
    }

    /**
     * 消费者1
     */
    @RabbitListener(bindings = @QueueBinding(value = @Queue, exchange = @Exchange(name = EXCHANGE, type = ExchangeTypes.FANOUT)))
    public void receiveMessage1(String message) {
        log.info("Received Message by consumer1: " + message);
    }

    /**
     * 消费者2
     */
    @RabbitListener(bindings = @QueueBinding(value = @Queue, exchange = @Exchange(name = EXCHANGE, type = ExchangeTypes.FANOUT)))
    public void receiveMessage2(String message) {
        log.info("Received Message by consumer2: " + message);
    }

}

四、路由模式

路由模式(Routing):根据路由键将消息转发到对应队列

java 复制代码
package com.qiangesoft.rabbitmq.mode.routing;

import lombok.extern.slf4j.Slf4j;
import org.springframework.amqp.core.ExchangeTypes;
import org.springframework.amqp.rabbit.annotation.Exchange;
import org.springframework.amqp.rabbit.annotation.Queue;
import org.springframework.amqp.rabbit.annotation.QueueBinding;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * 路由模式
 * ps:根据路由键将消息转发到对应队列
 *
 * @author qiangesoft
 * @date 2024-05-08
 */
@Slf4j
@RequestMapping("/routing")
@RestController
public class RoutingMode {

    private final String EXCHANGE = "direct.exchange";

    private final String KEY1 = "direct1";

    private final String KEY2 = "direct2";

    @Autowired
    private RabbitTemplate rabbitTemplate;

    /**
     * 生产者
     */
    @GetMapping("/send")
    public void sendM(String message) {
        rabbitTemplate.convertAndSend(EXCHANGE, KEY1, message);
    }

    /**
     * 消费者
     */
    @RabbitListener(bindings = @QueueBinding(value = @Queue, exchange = @Exchange(name = EXCHANGE, type = ExchangeTypes.DIRECT), key = {KEY1, KEY2}))
    public void receiveMessage(String message) {
        log.info("Received Message: " + message);
    }

}

五、主题模式

通配符模式(Topics):使用通配符匹配路由键

java 复制代码
package com.qiangesoft.rabbitmq.mode.topic;

import lombok.extern.slf4j.Slf4j;
import org.springframework.amqp.core.ExchangeTypes;
import org.springframework.amqp.rabbit.annotation.Exchange;
import org.springframework.amqp.rabbit.annotation.Queue;
import org.springframework.amqp.rabbit.annotation.QueueBinding;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * 主题模式
 * ps: 使用通配符匹配路由键
 *
 * @author qiangesoft
 * @date 2024-05-08
 */
@Slf4j
@RequestMapping("/topic")
@RestController
public class TopicMode {

    private final String EXCHANGE = "topic.exchange";

    private final String QUEUE = "topic.queue";

    @Autowired
    private RabbitTemplate rabbitTemplate;

    /**
     * 生产者
     */
    @GetMapping("/send")
    public void send(String message) {
        rabbitTemplate.convertAndSend(EXCHANGE, QUEUE, message);
    }

    /**
     * 消费者
     */
    @RabbitListener(bindings = @QueueBinding(value = @Queue, exchange = @Exchange(name = EXCHANGE, type = ExchangeTypes.TOPIC), key = {"topic.*", "#.topic"}))
    public void receiveMessage(String message) {
        log.info("Received Message: " + message);
    }

}
相关推荐
shaodong11239 小时前
鸿蒙系统-同应用跨设备数据同步(分布式功能)
分布式·华为·harmonyos
xiao-xiang12 小时前
kafka-保姆级配置说明(producer)
分布式·kafka
黄名富13 小时前
Spring Cloud — 深入了解Eureka、Ribbon及Feign
分布式·spring·spring cloud·微服务·eureka·ribbon
小丑西瓜66613 小时前
分布式简单理解
linux·redis·分布式·架构·架构演变
优人ovo13 小时前
详解分布式ID实践
分布式
Java资深爱好者14 小时前
在Spark中,如何使用DataFrame进行高效的数据处理
大数据·分布式·spark
布谷歌15 小时前
Oops! 更改field的数据类型,影响到rabbitmq消费了...(有关于Java序列化)
java·开发语言·分布式·rabbitmq·java-rabbitmq
一个假的前端男15 小时前
RabbitMQ 消息队列 优化发送邮件
分布式·rabbitmq·ruby
A尘埃15 小时前
关闭超时订单和七天自动确认收货+RabbitMQ规范
分布式·rabbitmq
2501_9032386515 小时前
深入理解 Kafka 主题分区机制
分布式·kafka·个人开发