标签:读取 最新 通过 配置文件 bho model mapping 步骤 rop
前面几篇文章我们聊了Spring Cloud Config配置中心,当我们在更新Git上面的配置以后,如果想要获取到最新的配置,需要手动刷新或者利用webhook的机制每次提交代码发送请求来刷新客户端,客户端越来越多的时候,需要每个客户端都执行一遍,这种方案就不太适合了。使用Spring Cloud Bus可以完美解决这一问题。
Spring cloud bus通过轻量消息代理连接各个分布的节点。这会用在广播状态的变化(例如配置变化)或者其他的消息指令。Spring bus的一个核心思想是通过分布式的启动器对spring boot应用进行扩展,也可以用来建立一个多个应用之间的通信频道。目前唯一实现的方式是用AMQP消息代理作为通道,同样特性的设置(有些取决于通道的设置)在更多通道的文档中。
用到上篇文章工程,还需要电脑上安装上RabbitMQ(RabbitMQ怎么按请自行百度)
复制上一篇的config-client-high-availability项目,改成config-client-high-availability-rabbitmq,并在引入rabbitmq依赖spring-cloud-starter-bus-amqp
pom文件如下
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>spring-cloud-config</artifactId> <groupId>com.niuben</groupId> <version>1.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>config-client-high-availability-rabbitmq</artifactId> <packaging>jar</packaging> <dependencies> <!--Web依赖--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!--spring-cloud-starter--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId> </dependency> <!--eureka-client--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> </dependency> <!--Rabbitmq--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-bus-amqp</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> </dependencies> <!--Maven打包--> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
编写配置文件application.properties,加RabbitMQ的配置
spring.application.name=config-client spring.cloud.config.label=master spring.cloud.config.profile=dev #spring.cloud.config.uri= http://localhost:8888/ eureka.client.serviceUrl.defaultZone=http://localhost:8889/eureka/ # 从配置中心读取文件 spring.cloud.config.discovery.enabled=true # 置中心的servieId,即服务名 # 读取配置文件不再写ip地址,而是服务名,这时如果配置服务部署多份,通过负载均衡,从而高可用 spring.cloud.config.discovery.serviceId=config-server server.port=8881 # RabbitMq的配置 spring.rabbitmq.host=localhost spring.rabbitmq.port=5672 spring.rabbitmq.username=guest spring.rabbitmq.password=guest spring.cloud.bus.enabled=true spring.cloud.bus.trace.enabled=true management.endpoints.web.exposure.include=bus-refresh
在controller层TestController类上加@RefreshScope注解,表明配置文件自动刷新
@RestController @RefreshScope //配置文件自动刷新 public class TestClient { /** * http://localhost:8881/actuator/bus-refresh */ @Value("${foo}") String foo; @RequestMapping(value = "/test") public String hi() { return foo; } }
依次启动eureka-server,config-server-high-availability,config-client-high-availability-rabbitmq,访问http://localhost:8881/test,显示
now is 100
这是去仓库修改foo的值改为now is 200,配置文件foo的值发生了变化,此时用postman发送请求执行http://localhost:8881/actuator/bus-refresh
这是config-server-high-availability会重新读取配置文件,再访问http://localhost:8881/test,显示
now is 200
知识点
/actuator/bus-refresh接口可以指定服务,即使用"destination"参数,比如 “/actuator/bus-refresh?destination=haha**” 即刷新服务名为hahas的所有服务
源码:https://gitee.com/niugit/spring-cloud-config
标签:读取 最新 通过 配置文件 bho model mapping 步骤 rop
原文地址:https://www.cnblogs.com/niudaben/p/12441424.html