Spring Cloud Stream 是否支持 RabbitMQ Stomp over Websocket
Does Spring Cloud Stream support RabbitMQ Stomp over Websocket
我正在使用 Spring Cloud Stream (SpringBoot) 与 RabbitMQ 实例通信。
该项目可以通过 AMQP 连接到 RabbitMQ,但 无法使用 STOMP。任何人都知道:是否支持 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
STOMP 目前不是受支持的活页夹协议。
我正在使用 Spring Cloud Stream (SpringBoot) 与 RabbitMQ 实例通信。
该项目可以通过 AMQP 连接到 RabbitMQ,但 无法使用 STOMP。任何人都知道:是否支持 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
STOMP 目前不是受支持的活页夹协议。