簡體   English   中英

Spring Cloud Stream是否通過Websocket支持RabbitMQ Stomp

[英]Does Spring Cloud Stream support RabbitMQ Stomp over Websocket

我正在使用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

STOMP當前不是受支持的綁定程序協議。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM