码迷,mamicode.com
首页 > 编程语言 > 详细

Spring Boot项目配置RabbitMQ集群

时间:2018-11-01 17:50:13      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:word   ESS   bit   rop   使用   oca   ber   auto   comm   


//具体参看了配置的源码
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集群

标签:word   ESS   bit   rop   使用   oca   ber   auto   comm   

原文地址:https://www.cnblogs.com/tiancai/p/9890493.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!