博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring cloud之/bus/refresh接口无用
阅读量:6683 次
发布时间:2019-06-25

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

在Springboot2.0之前是直接访问http://localhost:8888/actuator/bus/refresh去通知配置服务器分发消息的,而到了Springboot 2.0之后Config客户端自动刷新时没有/bus/refresh端点,所以需要如下配置

1. 在配置服务端和客户端配置文件中都加上如下配置

management.endpoints.web.exposure.include= bus-refresh

2. 在客户端使用配置的类加上@RefreshScope注解

 

@RestController@RefreshScopepublic class TestController {    @Value("${name}")    private String name;    @GetMapping(value = "getGitConfig")    public String getGitConfig(){        return name;    }}

 

转载地址:http://zxaao.baihongyu.com/

你可能感兴趣的文章
字符子串
查看>>
db4o 参考资料
查看>>
mysql生产环境___主从同步修复案例
查看>>
对Controller的单元测试
查看>>
人工智能无法挑战人心
查看>>
移动web 1px边框解决方案
查看>>
关于硬盘的一切!
查看>>
centos7.4 Rsync配置和触发备份
查看>>
Linux下通配符记录
查看>>
Spring Cloud云服务 - HongHu架构common-service 项目构建过程
查看>>
71.shell中的函数、数组
查看>>
flannel安装
查看>>
cnetos7源码安装openssh(加速ansible)
查看>>
学会让你才是赢家,让了你才是智者。忍耐富贵,静默中绽放成功之花。
查看>>
MySQL主从复制实践与部署
查看>>
Shell笔记8——for和select循环的应用实践
查看>>
命令执行常用命令
查看>>
Oracle12c 安装
查看>>
DX11之D3DXMatrixIdentity 函数
查看>>
四项重要标准 让金融机构评选合适的DDoS防护提供商
查看>>