//具体参看了配置的源码
org.springframework.boot.autoconfigure.amqp.RabbitProperties
//RabbitMQ单机
spring:
rabbitmq:
host: localhost
port: 5672
username: your_username
password: your_password
//或者 RabbitMQ单机,只使用addresses
spring:
rabbitmq:
addresses:ip1:port1
username: your_username
password: your_password
//RabbitMQ集群,addresses一定要逗号分隔
spring:
rabbitmq:
addresses:ip1:port1,ip2:port2,ip3:port3
username: your_username
password: your_password
相关文章
- Spring Boot项目配置RabbitMQ集群
- Spring Boot(十三)RabbitMQ安装与集成
- Spring Boot 项目实战(四)集成 Redis
- 你真的理解 Spring Boot 项目中的 parent 吗?
- Spring Boot项目中MyBatis连接DB2和MySQL数据库返回结果中一些字符消失——debug笔记
- 在Spring Boot项目中使用Spock框架
- 在Spring Boot项目中使用Spock测试框架
- Spring Boot项目中使用Mockito
- Spring boot2项目启动报错Unable to start ServletWebServerApplicationContext due to missing ServletWebServer
- Eclipse Spring Boot 项目更改项目名称