spring cloud stream

概念:spring cloud stream 是一个集成消息中间件的框架,用于构建与共享消息传递系统连接的高度可扩展的时间驱动微服务。支持消息发布,消息订阅,消息分区处理;解决了开发人员无感知的使用消息中间件

三个核心模块:

  • 目标绑定器:复制提供与外部消息中间件的集成
  • 目标绑定:外部消息中间件与应用代码之间的桥梁
  • 消息:生产者和消费者与目标绑定器进行通讯的数据结构

已经实现的目标绑定器如下:

Stream 工作原理

  • Source : 当需要发送消息时,我们就需要通过 Source.java,它会把我们要发送的消息进行序列化,然后将数据发送到Channel中;
  • Sink : 监听消息需要通过Sink.java,它负责从消息通道中获取消息,并将消息序列化成消息对象,然后交给具体的消息监听处理;
  • Channel :通常我们想消息中间件发送消息活监听消息时需要指定主题(Topic) 和消息队列名称。通过 Channel 对象,实现与消息中间件的通讯
  • Binder :通过不通的 binder 可以实现与不通的消息中间件整合,binder 提供统一的消息收发接口,从而使得我们可以更具实际部署的消息中间件,或者更具实际生产中部署的中间件调整我们的配置

废话不多说,上代码,demo中引入的 kafka 和 rocket,因为业务上一般只使用一种类型的mq,所有这里只设置了一个input/output,在pom文件中如果同事引入了多种mq,需要指定一个default-binder

配置文件 application.yaml

server:
  port: ${random.int[10000,19999]}

spring:
  application:
    name: stream-mq-lq
  profiles:
    active: kafka
  cloud:
    stream:
      default-binder: kafka

配置文件 application-kafka.yaml

spring:
  cloud:
    stream:
      bindings:
        biz-output:
          destination: topic-x
          content-type: application/json
        biz-input:
          destination: topic-x
          content-type: application/json
          # if use group is Clustering ,else is broadcasting
          #group: test-lq
      # kafka mq config
      kafka:
        binder:
          brokers: localhost:9092

配置文件 application-rocket.yaml

spring:
  cloud:
    stream:
      bindings:
        biz-output:
          destination: MAGIC_TOPIC
          content-type: application/json
        biz-input:
          destination: MAGIC_TOPIC
          content-type: application/json
          group: mq-log
      # rocket mq config
      rocketmq:
        binder:
          name-server: localhost:9876
        bindings:
          # producer config
          biz-output:
            # RocketMQBindingProperties
            producer:
              group: mq-log
              sync: false
              maxMessageSize: 1048576
          # consumer config
          biz-input:
            # RocketMQConsumerProperties
            consumer:
              enabled: true
              # default Clustering
              broadcasting: true



pom文件

<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.lq</groupId>
    <artifactId>spring-cloud-stream-t</artifactId>
    <version>0.0.1-SNAPSHOT</version>


    <properties>
        <spring.boot.version>2.3.2.RELEASE</spring.boot.version>
        <spring.cloud.version>Hoxton.SR8</spring.cloud.version>
        <spring.cloud.alibaba.version>2.2.5.RELEASE</spring.cloud.alibaba.version>
    </properties>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-parent</artifactId>
                <version>${spring.boot.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>${spring.cloud.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>com.alibaba.cloud</groupId>
                <artifactId>spring-cloud-alibaba-dependencies</artifactId>
                <version>${spring.cloud.alibaba.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
    <dependencies>
        <!-- 引入 SpringMVC 相关依赖,并实现对其的自动配置 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <!-- 引入 Spring Cloud Alibaba Stream RocketMQ 相关依赖,将 RocketMQ 作为消息队列,并实现对其的自动配置 -->
        <!--<dependency>
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-starter-stream-rocketmq</artifactId>
        </dependency>-->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-stream-binder-kafka</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.8</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>
@EnableBinding(MySink.class)
public class MessageConsumer {

    @StreamListener(MySink.INPUT)
    public void receive(@Payload Message<String> message){
        String msg = message.getPayload();
        MessageHeaders headers = message.getHeaders();
        System.out.println("收到消息 -> "+msg+" header-> "+headers.toString());
    }
}

@EnableBinding(MySource.class)
public class MessageProducer {
    @Resource
    private MySource source;
    @Value("${spring.cloud.stream.default-binder}")
    private String mqType;

    public void sendMsg(String msg) {
        boolean send = false;
        if ("rocket".equals(mqType)) {
            send =source.bizOutput().send(MessageBuilder.withPayload(msg).setHeader("TAGS", "tag1").build());
        } else {
            send =source.bizOutput().send(MessageBuilder.withPayload(msg).build());
        }
        System.out.println("send result=" + send);
    }
}

public interface MySink {

    String INPUT = "biz-input";

    @Input("biz-input")
    SubscribableChannel bizInput();
}

public interface MySource {

/*
    @Output("log-output")
    MessageChannel logOutput();
*/

    @Output("biz-output")
    MessageChannel bizOutput();
}

@Component
public class MqUtil {

    private static MessageProducer mp;
    @Resource
    private MessageProducer imp;

    @PostConstruct
    public void init(){
        MqUtil.mp=this.imp;
    }

    public static void sendMsg(String msg) {
        if (null == mp) {
            System.out.println("mq init ...");
        }
        mp.sendMsg(msg);
    }
}

@RestController
@RequestMapping("msg")
public class MsgController {

    @Resource
    private MessageProducer messageProducer;


    @GetMapping("bizMq")
    public void sendBizMq(String msg) {
        messageProducer.sendMsg(msg);
        MqUtil.sendMsg("MqUtil static send "+msg);
    }
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值