1

尝试使用 spring-cloud-stream-rocketmq 开发一个微服务项目。我有默认的 RocketMQ 服务器,我的配置是

  spring:
  cloud:
    stream:
      default-binder: rocketmq
      rocketmq:
        binder:
          name-server: nameserver1
        bindings:
          output1:
            producer:
              transactional: false
      bindings:
        output1:
          destination: topic1
        output2:  
          destination: topic2

但不是我想访问另一个 RocketMQ 服务器。我应该如何更改配置以使用两个 RocketMQ 服务器。请帮助我

4

1 回答 1

0

多个名称服务器意味着您正在使用集群!

经纪人的配置也应该正确设置

使用clustername或尝试"nameserverIP1;nameserverIP2"

于 2020-05-25T03:28:58.870 回答