Spring Boot 消息队列(以RabbitMQ为例)

文章目录

      • [RabbitMQ 简介与安装](#RabbitMQ 简介与安装)
        • [1. RabbitMQ 简介](#1. RabbitMQ 简介)
        • [2. RabbitMQ 安装](#2. RabbitMQ 安装)
      • [Spring Boot 集成 RabbitMQ](#Spring Boot 集成 RabbitMQ)
        • [1. 创建 Spring Boot 项目](#1. 创建 Spring Boot 项目)
        • [2. 配置 RabbitMQ](#2. 配置 RabbitMQ)
        • [3. 定义消息队列和交换机](#3. 定义消息队列和交换机)
        • [4. 发送消息](#4. 发送消息)
        • [5. 接收消息](#5. 接收消息)
        • [6. 测试消息发送和接收](#6. 测试消息发送和接收)

RabbitMQ 简介与安装

1. RabbitMQ 简介

RabbitMQ 是一个开源的消息代理和队列服务器,基于 AMQP(高级消息队列协议)实现。它具有以下特点:

  • 可靠性:支持持久化、传输确认、发布确认等机制,确保消息不丢失。
  • 灵活性:支持多种消息模型,如点对点、发布 - 订阅等。
  • 分布式:可以通过集群和镜像队列来实现高可用性和扩展性。
  • 多语言支持:支持多种编程语言,如 Java、Python、C# 等。
2. RabbitMQ 安装

以下以在 Linux(Ubuntu)系统上安装 RabbitMQ 为例:

步骤 1:安装 Erlang

RabbitMQ 是用 Erlang 语言编写的,因此需要先安装 Erlang。

bash 复制代码
# 添加 Erlang 仓库
wget https://packages.erlang-solutions.com/erlang-solutions_2.0_all.deb
sudo dpkg -i erlang-solutions_2.0_all.deb
sudo apt-get update

# 安装 Erlang
sudo apt-get install esl-erlang

步骤 2:安装 RabbitMQ

bash 复制代码
# 添加 RabbitMQ 仓库
echo "deb https://dl.bintray.com/rabbitmq/debian $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/bintray.rabbitmq.list
wget -O- https://dl.bintray.com/rabbitmq/Keys/rabbitmq-release-signing-key.asc | sudo apt-key add -
wget -O- https://www.rabbitmq.com/rabbitmq-release-signing-key.asc | sudo apt-key add -
sudo apt-get update

# 安装 RabbitMQ
sudo apt-get install rabbitmq-server

步骤 3:启动 RabbitMQ 服务

bash 复制代码
sudo systemctl start rabbitmq-server

步骤 4:设置开机自启

bash 复制代码
sudo systemctl enable rabbitmq-server

步骤 5:启用管理界面

bash 复制代码
sudo rabbitmq-plugins enable rabbitmq_management

访问 http://localhost:15672,使用默认用户名 guest 和密码 guest 登录管理界面。

Spring Boot 集成 RabbitMQ

1. 创建 Spring Boot 项目

可以使用 Spring Initializr(https://start.spring.io/)创建一个新的 Spring Boot 项目,添加以下依赖:

  • Spring Web
  • Spring AMQP
2. 配置 RabbitMQ

application.propertiesapplication.yml 中配置 RabbitMQ 连接信息:

application.properties

properties 复制代码
spring.rabbitmq.host=localhost
spring.rabbitmq.port=5672
spring.rabbitmq.username=guest
spring.rabbitmq.password=guest

application.yml

yaml 复制代码
spring:
  rabbitmq:
    host: localhost
    port: 5672
    username: guest
    password: guest
3. 定义消息队列和交换机

创建一个配置类来定义队列、交换机和绑定关系:

java 复制代码
import org.springframework.amqp.core.Binding;
import org.springframework.amqp.core.BindingBuilder;
import org.springframework.amqp.core.DirectExchange;
import org.springframework.amqp.core.Queue;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class RabbitMQConfig {

    public static final String QUEUE_NAME = "myQueue";
    public static final String EXCHANGE_NAME = "myExchange";
    public static final String ROUTING_KEY = "myRoutingKey";

    @Bean
    public Queue queue() {
        return new Queue(QUEUE_NAME, true);
    }

    @Bean
    public DirectExchange exchange() {
        return new DirectExchange(EXCHANGE_NAME);
    }

    @Bean
    public Binding binding(Queue queue, DirectExchange exchange) {
        return BindingBuilder.bind(queue).to(exchange).with(ROUTING_KEY);
    }
}
4. 发送消息

创建一个消息发送者类:

java 复制代码
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

@Service
public class MessageSender {

    @Autowired
    private RabbitTemplate rabbitTemplate;

    public void sendMessage(String message) {
        rabbitTemplate.convertAndSend(RabbitMQConfig.EXCHANGE_NAME, RabbitMQConfig.ROUTING_KEY, message);
    }
}
5. 接收消息

创建一个消息接收者类:

java 复制代码
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Service;

@Service
public class MessageReceiver {

    @RabbitListener(queues = RabbitMQConfig.QUEUE_NAME)
    public void receiveMessage(String message) {
        System.out.println("Received message: " + message);
    }
}
6. 测试消息发送和接收

创建一个控制器来测试消息发送:

java 复制代码
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class MessageController {

    @Autowired
    private MessageSender messageSender;

    @GetMapping("/send")
    public String sendMessage(@RequestParam String message) {
        messageSender.sendMessage(message);
        return "Message sent: " + message;
    }
}

启动 Spring Boot 应用程序,访问 http://localhost:8080/send?message=Hello,RabbitMQ,在控制台可以看到消息接收的输出。

通过以上步骤,就完成了 Spring Boot 与 RabbitMQ 的集成,实现了消息的发送和接收。4

相关推荐
hycccccch33 分钟前
Canal+RabbitMQ实现MySQL数据增量同步
java·数据库·后端·rabbitmq
用键盘当武器的秋刀鱼2 小时前
springBoot统一响应类型3.5.1版本
java·spring boot·后端
小李同学_LHY3 小时前
三.微服务架构中的精妙设计:服务注册/服务发现-Eureka
java·spring boot·spring·springcloud
爱喝醋的雷达4 小时前
Spring SpringBoot 细节总结
java·spring boot·spring
嘵奇6 小时前
深入解析 Spring Boot 测试核心注解
java·spring boot·后端
陈平安Java and C7 小时前
RabbitMQ简单介绍和安装
rabbitmq
陈平安Java and C7 小时前
RabbitMQ应用2
rabbitmq
技术liul7 小时前
解决Spring Boot Configuration Annotation Processor not configured
java·spring boot·后端
RainbowSea8 小时前
4. RabbitMQ 发布确认的配置详细说明
java·消息队列·rabbitmq
腥臭腐朽的日子熠熠生辉10 小时前
解决maven失效问题(现象:maven中只有jdk的工具包,没有springboot的包)
java·spring boot·maven