0

我正在使用Spring Cloud Stream (SpringBoot) 与RabbitMQ实例进行通信。

该项目可以通过AMQP连接到 RabbitMQ ,但不适用于STOMP。任何人都知道:是否支持单脚以及如何配置?(我的RabbitMQ已经开放了61613端口)

application.yml文件是这样的:

server:
  port: 8080
spring:
  cloud:
    stream:
      bindings:
        output:
          destination: cloud-stream
  rabbitmq:
    addresses: amqp://192.168.231.130:5672 # this works
    #addresses: stomp://192.168.231.130:61613 # this does not work
    username: test
    password: test
4

1 回答 1

0

STOMP 目前不是受支持的 binder 协议。

于 2016-08-23T12:54:58.137 回答