首先,我对我的英语感到抱歉。我正在上高中,我需要在YAML文件中为侦听器设置RabbitMQ队列名称,但是我不能。我在spring-boot中使用application.properties制作了应用程序,并且可以正常工作,但是我需要更改为YAML。你能帮我吗?
我的application.yaml
spring:
rabbitmq:
port: 5672
host: 'localhost'
username: root
password: root
queue:
name: queue-test
谢谢=)
答案 0 :(得分:0)
您可以使用以下yaml示例结构:
# RabbitMQ properties
rabbitmq:
addresses: localhost:5672
adminAddresses: http://localhost:15672
nodes: rabbit@localhost
username: guest
password: guest
virtual_host: /
useSSL: false
sslProperties:
ssl:
keyStore:
keyStorePassphrase:
trustStore:
trustStorePassphrase:
channelCacheSize: 100