spring|spring cloud config和bus组件实现自动刷新功能
1.启动RabbitMQ
2.修改config服务端 依赖:(boot和cloud版本不要太高,不然刷新配置的请求不能用)
org.springframework.cloud spring-cloud-starter-consul-discoveryorg.springframework.boot spring-boot-starter-actuatororg.springframework.cloud spring-cloud-config-serverorg.springframework.cloud spring-cloud-starter-bus-amqporg.springframework.boot spring-boot-starter-web
配置:
spring:cloud:consul:host: localhostport: 8500config:server:git:uri: https://gitee.com/xiang_pei/config.gitdefault-label: masterapplication:name: CONFIGSERVERrabbitmq:host: localhostport: 5672username: guestpassword: guestvirtual-host: /#暴露所有端点,便于发送更新配置请求management:endpoints:web:exposure:include: "*"
启动:(启动类加@EnableConfigServer)mq会有一条临时队列
文章图片
3.修改微服务(即客户端) 依赖:
org.springframework.boot spring-boot-starter-weborg.springframework.cloud spring-cloud-starter-consul-discoveryorg.springframework.boot spring-boot-starter-actuatororg.springframework.cloud spring-cloud-starter-configorg.springframework.cloud spring-cloud-starter-bootstraporg.springframework.cloud spring-cloud-starter-bus-amqp
配置:不变(rabbitmq的配置应该写到gitee上)bootstrap.properties
spring.cloud.consul.host=localhostspring.cloud.consul.port=8500spring.application.name=CONFIGCLIENTspring.cloud.config.discovery.service-id=CONFIGSERVERspring.cloud.config.discovery.enabled=truespring.cloud.config.name=configspring.cloud.config.label=masterspring.cloud.config.profile=dev
文章图片
运行:
写了一个测试方法
文章图片
name属性是gitee上的配置文件的name
文章图片
没问题
4.利用webhooks实现自动刷新配置
向config服务端发送post请求
http://localhost:8080/actuator/bus-refresh
具体路径根据项目来
在gitee的config管理中,点击webhooks
文章图片
url就填上面那个,因为需要公网才能测试,所以暂时不演示了。
设置完,改gitee的配置就会自动刷新了
【spring|spring cloud config和bus组件实现自动刷新功能】到此这篇关于spring cloud config和bus组件实现自动刷新功能的文章就介绍到这了,更多相关spring cloud config自动刷新内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
推荐阅读
- vue-cli|vue-cli 3.x vue.config.js 配置
- Activiti(一)SpringBoot2集成Activiti6
- SpringBoot调用公共模块的自定义注解失效的解决
- 解决SpringBoot引用别的模块无法注入的问题
- 2018-07-09|2018-07-09 Spring 的DBCP,c3p0
- spring|spring boot项目启动websocket
- Spring|Spring Boot 整合 Activiti6.0.0
- Spring集成|Spring集成 Mina
- springboot使用redis缓存
- Spring|Spring 框架之 AOP 原理剖析已经出炉!!!预定的童鞋可以识别下发二维码去看了