首页 > 代码库 > Spring Cloud Bus
Spring Cloud Bus
Bus, 事件、消息总线,用于在集群(例如,配置变化事件)中传播状态变化,可与Spring Cloud Config联合实现热部署。
本实例采用rabbitmq实现。
rabbitmq服务器端
下载安装: http://www.rabbitmq.com/download.html
配置用户名和密码。
在docker部署时,采用官方镜像,添加环境变量RABBITMQ_DEFAULT_USER = ***,
RABBITMQ_DEFAULT_PASS = ***,
设置用户名和密码
具体参见: https://hub.docker.com/_/rabbitmq/
rabbitmq客户端
1、pom引入
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-bus-amqp</artifactId> </dependency>
2、配置文件
spring: rabbitmq: host: rabbitmq port: 5672 username: user password: password
3、类文件使用
@RefreshScope 类文件注解
@Value("${wordConfig.word}") String word; //已注入方式获得值
其他写法:参见 https://segmentfault.com/a/1190000006226542
Spring Cloud Bus
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。