当前位置: 首页 > article >正文

Spring Boot 整合 RabbitMQ:从入门到实践

在现代微服务架构中,消息队列(Message Queue)是实现服务之间异步通信的重要组件。RabbitMQ 作为一个功能强大的消息代理,提供了可靠的消息传递机制,广泛应用于分布式系统中。Spring Boot 作为 Java 生态中的主流框架,提供了与 RabbitMQ 的无缝集成,使得开发者能够快速构建基于消息队列的应用。

本文将详细介绍如何在 Spring Boot 项目中整合 RabbitMQ,并通过实际代码示例帮助你快速上手。

1. RabbitMQ 简介

1.1 什么是 RabbitMQ?

RabbitMQ 是一个开源的消息代理软件(Message Broker),它实现了高级消息队列协议(AMQP),并提供了多种消息传递模式,如点对点、发布/订阅等。RabbitMQ 支持多种编程语言,并且具有高可用性、可扩展性和可靠性。

1.2 RabbitMQ 的核心概念

  • Producer(生产者):发送消息的应用程序。
  • Consumer(消费者):接收消息的应用程序。
  • Queue(队列):存储消息的缓冲区,消息在队列中等待被消费。
  • Exchange(交换机):接收生产者发送的消息,并根据路由规则将消息分发到相应的队列。
  • Binding(绑定):定义了交换机和队列之间的关系,决定了消息如何路由到队列。
  • Routing Key(路由键):生产者发送消息时指定的键,用于交换机根据路由规则将消息分发到队列。

2. Spring Boot 整合 RabbitMQ

2.1 环境准备

在开始之前,请确保你已经安装了以下环境:

  • Java 8 或更高版本
  • Maven 或 Gradle
  • RabbitMQ 服务器(可以通过 Docker 快速启动)

你可以通过以下命令使用 Docker 启动 RabbitMQ 服务器:

docker run -d --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3-management

启动后,可以通过 http://localhost:15672 访问 RabbitMQ 的管理界面,默认用户名和密码为 guest/guest

2.2 创建 Spring Boot 项目

你可以通过 Spring Initializr 快速创建一个 Spring Boot 项目。选择以下依赖:

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-amqp</artifactId>
</dependency>
<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-web</artifactId>
</dependency>

生成项目后,导入到你的 IDE 中。

2.3 配置 RabbitMQ

application.properties 文件中添加 RabbitMQ 的配置:

spring.rabbitmq.host=192.168.200.142
spring.rabbitmq.port=5672
spring.rabbitmq.virtual-host=/test
spring.rabbitmq.username=test
spring.rabbitmq.password=test

2.4 定义消息队列和交换机

在 Spring Boot 中,我们可以通过 @Bean 注解来定义 RabbitMQ 的队列、交换机和绑定关系。

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 RabbitMQConfig {

    public static final String QUEUE_NAME = "spring-boot-queue";
    public static final String EXCHANGE_NAME = "spring-boot-exchange";
    public static final String ROUTING_KEY = "spring-boot-routing-key";

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

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

    @Bean
    public Binding binding(Queue queue, TopicExchange exchange) {
        return BindingBuilder.bind(queue).to(exchange).with(ROUTING_KEY);
    }
}

2.5 发送消息

在 Spring Boot 中,我们可以通过 RabbitTemplate 来发送消息。

import com.allen.config.RabbitMQConfig;
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.RequestParam;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class MessageController {

    @Autowired
    private RabbitTemplate rabbitTemplate;

    @GetMapping("/send")
    public String sendMessage(@RequestParam String message) {
        rabbitTemplate.convertAndSend(RabbitMQConfig.EXCHANGE_NAME, RabbitMQConfig.ROUTING_KEY, message);
        return "Message sent: " + message;
    }
}

2.6 接收消息

通过 @RabbitListener 注解,我们可以监听指定的队列并处理接收到的消息。

import com.allen.config.RabbitMQConfig;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Component;

@Component
public class MessageListener {

    @RabbitListener(queues = RabbitMQConfig.QUEUE_NAME)
    public void receiveMessage(String message) {
        System.out.println("Received message: " + message);
    }
}

2.7 测试

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class TestSpringbootRabbitmqApplication {
    public static void main(String[] args) {
        SpringApplication.run(TestSpringbootRabbitmqApplication.class, args);
        System.out.println("系统已启动!");
    }
}

点击TestSpringbootRabbitmqApplication文件并启动 Spring Boot 应用,访问 http://localhost:8080/send?message=HelloRabbitMQ,你将在控制台看到如下输出:

Received message: HelloRabbitMQ

在这里插入图片描述

3. 总结

本文详细介绍了如何在 Spring Boot 项目中整合 RabbitMQ,并通过实际代码示例展示了如何发送和接收消息。通过 RabbitMQ,我们可以轻松实现服务之间的异步通信,提升系统的可扩展性和可靠性。


http://www.kler.cn/a/452318.html

相关文章:

  • windows 默认的消息ID有那些---我与大模型对话
  • HTML-CSS(day01)
  • Java 异常类详细介绍
  • Linux之ARM(MX6U)裸机篇----2.汇编LED驱动实验
  • [Android]按下扫描键时启动一个线程来执行某些操作
  • Doris 资源软硬限详解
  • Pytorch | 利用AI-FGTM针对CIFAR10上的ResNet分类器进行对抗攻击
  • 准备考试:解决大学入学考试问题
  • springMVC-请求响应
  • 【数学建模】利用Matlab绘图(2)
  • linux 常用 Linux 命令指南
  • Linux大数据方向shell
  • 借助Aspose.html控件, 使用 Java 编程将 HTML 转换为 BMP
  • 基于java出租车计价器设计与实现【源码+文档+部署讲解】
  • ffmpeg之播放一个yuv视频
  • 常见问题解决方案:Keen CommonWeb 开源项目
  • CVPR-2024 | 具身导航模型大一统!NaviLLM:学习迈向具身导航的通用模型
  • Unity中如何修改Sprite的渲染网格
  • NFC 碰一碰发视频源码搭建技术详解,支持OEM
  • 从零用java实现 小红书 springboot vue uniapp (6)用户登录鉴权及发布笔记
  • 【Trick】解决服务器cuda报错——RuntimeError: cuDNN error: CUDNN_STATUS_NOT_INITIALIZED
  • 前端三大主流框架:React、Vue、Angular
  • 网络管理-期末项目(附源码)
  • PySide6如何实现点击TableWidget列表头在该列右侧显示列表选择框筛选列数据
  • 数据仓库是什么?数据仓库简介
  • 设计一个自己的AI Agent