IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> 基于SpringBoot的RabbitMQ实战项目 -> 正文阅读

[Java知识库]基于SpringBoot的RabbitMQ实战项目

RabbitMQ简介

RabbitMQ 中文官方文档?(RabbitMQ 中文官方文档)

  1. 消息队列是应用程序和应用程序之间的一种通信方法。

  2. RabbitMQ : erlang语言开发、 基于AMQP协议。

  3. 同类产品:ActiveMQ、 ZeroMQ、 RabbitMQ、 RocketMQ、 Kafka。

  4. 六种模式: 简单模式、 工作模式、 发布与订阅模式、 路由模式、通配符模式、 远程调用模式(基本不会用到)

  5. 关键词:{Broker: 服务器实体、 Exchange :消息交换机、 Queue: 消息队列载体、Binding: 绑定 、Routing Key: 路由关键字、 VHost: 虚拟主机、Producer: 消息生产者 、 Consumer: 消息消费者、Channel: 消息通道 }

  6. 关键概念:由Exchange、Queue、RoutingKey三个才能决定一个从Exchange到Queue的唯一的线路。

?RabbitMQ五大模式实战

基于SpringBoot开发的RabbitMQ应用程序,利用SpringBoot的自动配置和起步依赖方便更快的构建项目。

环境准备

  1. 准备一台RabbitMQ服务器 链接: RabbitMQ安装提取码: qhxi?
  2. 本次使用的是SpringBoot项目
  3. pom依赖
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.4.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <dependencies>
        <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>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.springframework.amqp</groupId>
            <artifactId>spring-rabbit-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
    

  4. 配置application.yml文件
    spring:
      rabbitmq:
        host: 127.0.0.1
        port: 5672
        username: guest
        password: guest
    server:
      port: 8082
    

  5. 启动类和目录结构是SpringBoo正常设置,这里不再赘述。

注意:启动类名设置为RabbitmqProducerApplication

  • 简单模式
  1. 简单模式配置文件
    @Configuration
    public class RabbitSimpleConfig {
        @Bean
        public Queue simpleQueue(){
            return new Queue("simpleQueue");
        }
    }
    

  2. 简单模式生产者
    @SpringBootTest(classes = RabbitmqProducerApplication.class)
    public class ProducerTest {
        @Autowired
        RabbitTemplate rabbitTemplate;	
        @Test
        public void simpleProduct(){
            for (int num = 0; num < 20; num++) {
                rabbitTemplate.convertAndSend("simpleQueue", "简单模式"+num);
            }
        }
    }
    

  3. 简单模式消费者
    @Component
    public class MessageListener {
        @RabbitListener(queues = "simpleQueue")
        public void simpleListener(String message){
            System.out.println("简单模式监听器:"+message);
        }	
    }
    

  • 工作模式
  1. 工作模式配置文件
    @Bean
     public Queue workQueue(){
         return new Queue("workQueue");
     }
    

  2. 工作模式生产者
    @Test
    public void workProduct(){
        for (int num = 0; num < 20; num++) {
            rabbitTemplate.convertAndSend("workQueue", "工作模式"+num);
        }
    }
    

  3. 工作模式消费者
     @RabbitListener(queues = "workQueue")
     public void workListener1(String message) {
         System.out.println("工作模式监听器1:" + message);
     }
    
     @RabbitListener(queues = "workQueue")
     public void workListener2(String message) {
         System.out.println("工作模式监听器2:" + message);
     }
    

  • 发布订阅模式
  • 发布订阅模式配置文件
    //配置交换器
    @Bean
    public FanoutExchange fanoutExchange() {
        return new FanoutExchange("fanoutExchange");
    }
    //配置队列
    @Bean
    public Queue fanoutQueue1() {
        return new Queue("fanoutQueue1", true, false, false, null);
    }
    
    @Bean
    public Queue fanoutQueue2() {
        return new Queue("fanoutQueue2", true, false, false, null);
    }
    //配置绑定
    @Bean
    public Binding fanoutBinding1(FanoutExchange fanoutExchange, Queue fanoutQueue1) {
            return BindingBuilder.bind(fanoutQueue1).to(fanoutExchange);
    }
    
    @Bean
    public Binding fanoutBinding2(FanoutExchange fanoutExchange, Queue fanoutQueue2) {
        return BindingBuilder.bind(fanoutQueue2).to(fanoutExchange);
    }
    

  • 发布订阅模式生产者
    @Test
    public void FanoutProduct(){
        for (int num = 0; num < 10; num++) {
            rabbitTemplate.convertAndSend("fanoutExchange","","发布订阅模式"+num);
        }
    }
    

  • 发布订阅模式消费者
    @RabbitListener(queues = "fanoutQueue1")
    public void fanoutListener1(String message) {
        System.out.println("发布订阅监听器1:" + message);
    }
    
    @RabbitListener(queues = "fanoutQueue2")
    public void fanoutListener2(String message) {
        System.out.println("发布订阅监听器2:" + message);
    }
    

  • 路由模式
  1. 路由模式配置文件
    //配置交换机
    @Bean
    public DirectExchange directExchange() {
        return new DirectExchange("directExchange");
    }
    
    //配置队列
    @Bean
    public Queue directQueue1() {
        return new Queue("directQueue1", true, false, false, null);
    }
    
    @Bean
    public Queue directQueue2() {
        return new Queue("directQueue2", true, false, false, null);
    }
    //配置绑定
    @Bean
    public Binding directBinding1(Queue directQueue1, DirectExchange directExchange) {
        return BindingBuilder.bind(directQueue1).to(directExchange).with("one");
    }
    
    @Bean
    public Binding directBinding2(Queue directQueue2, DirectExchange directExchange) {
        return BindingBuilder.bind(directQueue2).to(directExchange).with("two");
    }
    

  2. 路由模式生产者
    @Test
    public void directProduct1() {
        for (int num = 0; num < 5; num++) {
            rabbitTemplate.convertAndSend("directExchange","one", "发送到路由队列1消息"+num);
        }
    }
    @Test
    public void directProduct2() {
        for (int num = 0; num < 5; num++) {
            rabbitTemplate.convertAndSend("directExchange","two", "发送到路由队列2消息"+num);
        }
    }
    

  3. 路由模式消费者
    @RabbitListener(queues = "directQueue1")
    public void fanoutListener1(String message) {
        System.out.println("路由模式监听器1:" + message);
    }
    
    @RabbitListener(queues = "directQueue2")
    public void fanoutListener2(String message) {
        System.out.println("路由模式监听器2:" + message);
    }
    

  • 通配符模式
  1. 通配符模式配置文件
    //配置队列
    @Bean
    public Queue topicQueue1() {
       return new Queue("topicQueue1");
    }
    
    @Bean
    public Queue topicQueue2() {
       return new Queue("topicQueue2");
    }
    //配置交换器
    @Bean
    public TopicExchange topicExchange() {
       return new TopicExchange("topicExchange");
    }
    //配置绑定
    @Bean
    public Binding topicBinding1(Queue topicQueue1, TopicExchange topicExchange) {
       return BindingBuilder.bind(topicQueue1).to(topicExchange).with("topic.*");
    }
    
    @Bean
    public Binding topicBinding2(Queue topicQueue2, TopicExchange topicExchange) {
       return BindingBuilder.bind(topicQueue2).to(topicExchange).with("topic.#");
    }
    

  2. 通配符模式生产者
    /*
     * 通配符模式测试
     * */
    @Test
    public void topicProduct() {
        rabbitTemplate.convertAndSend("topicExchange","topic.one", "routkey为topic.one的消息");
        rabbitTemplate.convertAndSend("topicExchange","topic.one.two", "routkey为topic.one.two的消息");
    }
    

  3. 通配符模式消费者
    @RabbitListener(queues = "topicQueue1")
    public void fanoutListener1(String message) {
        System.out.println("通配符监听器1:" + message);
    }
    
    @RabbitListener(queues = "topicQueue2")
    public void fanoutListener2(String message) {
        System.out.println("通配符监听器2:" + message);
    }
    

    总结

以上就是SpringBoot+RabbitMQ五大模式的简单使用实例,到目前为止RabbitMQ也是Sping AMQP的唯一实现。感谢支持,你的支持是我前进的动力!!!

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-09-04 00:56:31  更:2022-09-04 01:01:31 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 13:24:31-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码