摘要:
主要有以下4点: 1. 配置刷新是SpringCloud Config的功能,但被刷新的是普通的微服务应用 2. 微服务应用引入spring-boot-starter-actuator依赖, 为配置刷新提供支持,核心是给应用增加一个refresh接口 3. 在需要刷新配置的bean的类上添加@Ref 阅读全文
摘要:
访问如下接口时: @GetMapping("/get/{name}") public String get(@PathVariable("name")String name){ return name; } 如果这样请求: http://localhost:1000/get/server.port 阅读全文