博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring Boot项目配置RabbitMQ集群
阅读量:6377 次
发布时间:2019-06-23

本文共 509 字,大约阅读时间需要 1 分钟。

hot3.png

//具体参看了配置的源码org.springframework.boot.autoconfigure.amqp.RabbitProperties//RabbitMQ单机spring:  rabbitmq:    host: localhost    port: 5672    username: your_username    password: your_password//或者  RabbitMQ单机,只使用addressesspring:  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

 

转载于:https://my.oschina.net/placeholder/blog/1612946

你可能感兴趣的文章
代码片段10-12
查看>>
【总结整理】天地图WMTS服务与卫星图匹配与坐标转换
查看>>
关于z-index 属性和层级覆盖的相关学习
查看>>
键盘的监听 和 取消第一响应者
查看>>
Spring Boot启动过程源码分析
查看>>
【ZZ】如何选择适合自己项目的编程语言
查看>>
Caching漫谈--关于Cache的几个理论【转】
查看>>
HTTP与HTTPS的区别
查看>>
EasyUI SideMenu的运用
查看>>
Redis简单案例(二) 网站最近的访问用户
查看>>
制作动态链接库并使用
查看>>
Linux vi编辑器一些指令
查看>>
百度地图根据绘制的路线进行合理缩放
查看>>
Tomcat配置JVM运存
查看>>
MS SQL SERVER搜索某个表的主键所在的列名
查看>>
二十二、oracle pl/sql分类二 函数
查看>>
Vue官网教程-条件渲染
查看>>
React Native Life Cycle and Communication
查看>>
使用mysql purge手动清除二进制日志
查看>>
ASN.1探索 - 3编码规则与传输语法(CER与DER)(転)
查看>>