• spring cloud 快速上手系列 -> 03-消息队列 Stream -> 034-消费消息


    spring cloud 快速上手系列

    系列说明:快速上手,一切从简,搭建一个简单的微服务框架,让新手可以在这个基础框架上做各种学习、研究。

    03-消息队列 Stream

    034-消费消息

    1,说明

    前面一章,配置中心通过BUS总线,发送消息通知微服务刷新配置内容。我们这一章,也收获这个消息。

    2,StreamConsumer
    1) 代码目录

    在这里插入图片描述

    2) 代码内容
    • pom.xml
    
    <project xmlns="http://maven.apache.org/POM/4.0.0"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0modelVersion>
        <parent>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-parentartifactId>
            <version>2.7.3version>
            <relativePath/>
        parent>
        <groupId>com.hui.study.cloudgroupId>
        <artifactId>StudyStreamConsumerartifactId>
        <version>1.0.0-SNAPSHOTversion>
        <properties>
            <java.version>1.8java.version>
            <spring-cloud.version>2021.0.4spring-cloud.version>
            <maven.compiler.source>8maven.compiler.source>
            <maven.compiler.target>8maven.compiler.target>
        properties>
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.springframework.cloudgroupId>
                    <artifactId>spring-cloud-dependenciesartifactId>
                    <version>${spring-cloud.version}version>
                    <type>pomtype>
                    <scope>importscope>
                dependency>
            dependencies>
        dependencyManagement>
        <dependencies>
            
            <dependency>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-starter-webartifactId>
            dependency>
            
            <dependency>
                <groupId>org.springframework.cloudgroupId>
                <artifactId>spring-cloud-starter-stream-rabbitartifactId>
            dependency>
            
            <dependency>
                <groupId>org.springframework.cloudgroupId>
                <artifactId>spring-cloud-starter-netflix-eureka-clientartifactId>
            dependency>
        dependencies>
    project>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49

    没有新加依赖,就以前的依赖包。

    • application.yml
    server:
      port: 5001  #Stream-Consumer的端口号
    spring:
      application:
        name: stream-consumer  # 应用名称
      cloud:
        stream:
          binders: # 在此处配置要绑定的rabbitmq的服务信息;
            defaultRabbit: # 表示定义的名称,用于于binding整合
              type: rabbit # 消息组件类型
              environment: # 设置rabbitmq的相关的环境配置
                spring:
                  rabbitmq:
                    host: localhost
                    port: 5672
                    username: guest
                    password: guest
          bindings: # 服务的整合处理
            cloudBus-in-0: # 一个通道的名称
              destination: springCloudBus     # 表示要使用的exchange名称定义
              content-type: application/json  # 设置消息类型,本次为json,文本则设为text/plain
    eureka:
      client:
        #表示是否将自己注册进EurekaServer
        register-with-eureka: true
        #是否从EurekaServer抓取已有的注册信息,默认为true。
        fetchRegistry: true
        service-url:
          #服务中心地址
          defaultZone: http://localhost:7001/eureka
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30

    “cloudBus-in-0”这个是关键点。

    • CloudStreamConsumerApplication.java
    package com.hui.study.cloud.stream;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    
    @SpringBootApplication
    /**
     * 开启微服务
     */
    public class CloudStreamConsumerApplication {
        public static void main(String[] args) {
            SpringApplication.run(CloudStreamConsumerApplication.class, args);
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • StreamConsumerService.java
    package com.hui.study.cloud.stream.consumer;
    
    import org.springframework.context.annotation.Bean;
    import org.springframework.stereotype.Service;
    
    import java.util.function.Consumer;
    
    @Service
    /**
     * 接收消息的服务
     */
    public class StreamConsumerService {
    
        @Bean
        public Consumer<String> cloudBus() {
            return message -> System.out.println("收到消息:" + message);
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18

    方法名跟 “cloudBus-in-0” 对应的。

    3) 启动

    注册中心、配置中心都正常启动

    执行 CloudStreamConsumerApplication.java
    启动成功后,访问 http://localhost:7001
    在这里插入图片描述
    STREAM-CONSUMER已经注册上来了

    4)调用

    用apifox或postman访问:http://localhost:6101/actuator/busrefresh
    在这里插入图片描述

    可以看到,我们已经消费到了两条消息:
    在这里插入图片描述
    消息的具体内容,各位自行查找吧。我们这个系列,尽量简短,把微服务框架搭建好就收手,否则任何一个点都能扩散来讲,收不住收不住。

  • 相关阅读:
    unreal engine oculus 在vr场景中fade in , fade out
    【云原生 | 从零开始学istio】六、istio核心功能
    【C语言】结构体、位段、枚举、联合(共用体)
    网络网络层之(1)IPv4地址
    多线程Thread(初阶一:认识线程)
    《快速掌握QML》第一章 初识QML
    25岁实现财富自由,戴志康告诉你什么样的技术人适合创业
    阶梯形行列式的性质
    传奇服务端MirServer文件有何作用
    【C++】STL简介 | STL六大组件 | string类 | string类对象操作
  • 原文地址:https://blog.csdn.net/yihui823/article/details/126846285