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