上一篇咱們聊了Spring Cloud Config 配置中心,而且和Github作了集成,咱們的Server端是單機版的,任何單機版的服務都只能使用與測試環境或者本身作Demo測試,生產環境嚴禁使用單機服務,配置中心在整個微服務體系中都是及其重要的一個節點,尤爲是在DevOps中自動擴容,若是配置中心宕機,那麼全部的自動擴容都會失敗。(瞭解源碼可+求求: 1791743380)java
因此這一篇咱們聊聊配置中心的高可用,說到高可用,在springcloud體系中,是有註冊中心的,那麼,咱們的配置中心也是一個服務,可不可使用Eureka作服務的註冊與發現呢?git
答案是確定的。github
咱們將上一篇的Serve端Copy到新的目錄中,增長Eureka-client的依賴,使得Config-Serve能夠註冊到Eureka上。web
<?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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.6.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.springcloud</groupId> <artifactId>config-server</artifactId> <version>0.0.1-SNAPSHOT</version> <name>config-server</name> <description>Demo project for Spring Boot</description> <properties> <java.version>1.8</java.version> <spring-cloud.version>Greenwich.SR1</spring-cloud.version> </properties> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring-cloud.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
server: port: 8080 spring: application: name: spring-cloud-config-server cloud: config: server: git: uri: https://github.com/meteor1993/SpringCloudLearning search-paths: chapter6/springcloud-config username: username password: password eureka: client: service-url: defaultZone: http://localhost:8761/eureka/
增長eureka的地址配置算法
啓動類增長@EnableEurekaClient激活對註冊中心的支持spring
package com.springcloud.configserver; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.config.server.EnableConfigServer; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; @SpringBootApplication @EnableConfigServer @EnableEurekaClient public class ConfigServerApplication { public static void main(String[] args) { SpringApplication.run(ConfigServerApplication.class, args); } }
這樣Server註冊端咱們就修改完成了。先啓動Eureka,再啓動Serve,在瀏覽器中訪問http://localhost:8761/,就能夠看到咱們的Serve端已經註冊到註冊中心了,接下來咱們開始改造Client端。apache
首先仍是將上一篇的Client端Copy過來,和Server端同樣,增長Eureka-client的依賴,使得Config-Client能夠從註冊中心上發現服務。json
<?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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.6.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.springcloud</groupId> <artifactId>config-client</artifactId> <version>0.0.1-SNAPSHOT</version> <name>config-client</name> <description>Demo project for Spring Boot</description> <properties> <java.version>1.8</java.version> <spring-cloud.version>Greenwich.SR1</spring-cloud.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring-cloud.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
這裏咱們須要先清空application.yml,全部的配置全都轉移到bootstrap.properties中。bootstrap
spring.application.name=spring-cloud-config-client server.port=8081 spring.cloud.config.name=springcloud-config spring.cloud.config.profile=dev spring.cloud.config.label=master spring.cloud.config.discovery.enabled=true spring.cloud.config.discovery.serviceId=spring-cloud-config-server eureka.client.service-url.defaultZone=http://localhost:8761/eureka/
主要是去掉了spring.cloud.config.uri直接指向server端地址的配置,增長了最後的三個配置:瀏覽器
啓動類增長@EnableEurekaClient激活對註冊中心的支持
package com.springcloud.configclient; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; @SpringBootApplication @EnableEurekaClient public class ConfigClientApplication { public static void main(String[] args) { SpringApplication.run(ConfigClientApplication.class, args); } }
如今咱們來模擬生產環境。
首先,順次啓動Eureka,Server,Client。
在idea啓動兩個config-serve,咱們修改idea配置啓動配置,換到8000端口啓動config-serve。
先訪問http://localhost:8761/,能夠看到兩個config-serve都正常註冊到註冊中心。
[
](https://springcloud-oss.oss-c...
如上圖就可發現會有兩個server端同時提供配置中心的服務,防止某一臺down掉以後影響整個系統的使用。
咱們訪問client端的連接:http://localhost:8081/hello, 能夠看到頁面正常顯示:hello dev update1,刷新幾回,顯示都沒問題,如今咱們隨機停掉一個端口的config-serve服務,再去刷新頁面,能夠發現,頁面依然能夠正常顯示:hello dev update1。
至此,咱們高可用的目的已經達到,可是,不知道各位有沒有映像,咱們上一篇留了一個坑,服務啓動後,咱們修改遠端github上的配置時,這個配置並不會實時被客戶端端所獲取到,下面咱們來聊一聊有關Spring Cloud Config 刷新的問題。
咱們的客戶端並不能主動去感知Git或者Svn的配置變化,從而主動獲取最新的配置。那麼,客戶端如何去主動獲取新的配置信息呢?springcloud已經給咱們提供瞭解決方案,每一個客戶端經過POST方法觸發各自的/refresh。
修改config-client項目已到達能夠refresh的功能。
在咱們原有的config-client項目的pom.xml的基礎增長新的依賴
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>
增長了spring-boot-starter-actuator包,spring-boot-starter-actuator是一套監控的功能,能夠監控程序在運行時狀態,其中就包括/refresh的功能。
須要給加載變量的類上面加載@RefreshScope,在客戶端執行/refresh的時候就會更新此類下面的變量值。
package com.springcloud.configclient.controller; import org.springframework.beans.factory.annotation.Value; import org.springframework.cloud.context.config.annotation.RefreshScope; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * @Author: shiyao.wei * @Date: 2019/7/4 16:19 * @Version: 1.0 * @Desc: */ @RestController @RefreshScope // 使用該註解的類,會在接到SpringCloud配置中心配置刷新的時候,自動將新的配置更新到該類對應的字段中。 public class HelloController { @Value("${springcloud.hello}") private String hello; @RequestMapping("/hello") public String from() { return this.hello; } }
spring.application.name=spring-cloud-config-client server.port=8081 spring.cloud.config.name=springcloud-config spring.cloud.config.profile=dev spring.cloud.config.label=master spring.cloud.config.discovery.enabled=true spring.cloud.config.discovery.serviceId=spring-cloud-config-server eureka.client.service-url.defaultZone=http://localhost:8761/eureka/ management.security.enabled=false management.endpoints.web.exposure.include=*
咱們先訪問客戶端的測試鏈接:http://localhost:8081/hello, 這時,頁面的顯示是:hello dev update1,咱們修改github上的信息,修改成:hello dev update,如今訪問http://localhost:8081/hello,獲得的信息仍是:hello dev update1,如今咱們刷新一下客戶端,經過cmd命令行執行:curl -X POST http://localhost:8081/actuator/refresh,能夠看到命令行上有顯示:[「springcloud.hello」,」config.client.version」],意味着springcloud.hello這個配置已經刷新,這時,咱們再去刷新一下頁面,能夠看到,頁面上獲得的信息已經變爲了:hello dev update,這時咱們refresh成功。
每次手動刷新客戶端仍是很麻煩,有沒有什麼辦法只要提交代碼就自動調用客戶端來更新呢,github的webhook是一個好的辦法。
WebHook是當某個事件發生時,經過發送http post請求的方式來通知信息接收方。Webhook來監測你在Github.com上的各類事件,最多見的莫過於push事件。若是你設置了一個監測push事件的Webhook,那麼每當你的這個項目有了任何提交,這個Webhook都會被觸發,這時Github就會發送一個HTTP POST請求到你配置好的地址。
如此一來,你就能夠經過這種方式去自動完成一些重複性工做,好比,你能夠用Webhook來自動觸發一些持續集成(CI)工具的運做,好比Travis CI;又或者是經過 Webhook 去部署你的線上服務器。下圖就是github上面的webhook配置。
[
](https://springcloud-oss.oss-c...
events事件類型
描述
push
倉庫有push時觸發。默認事件
create
當有分支或標籤被建立時觸發
delete
當有分支或標籤被刪除時觸發
這樣咱們就能夠利用hook的機制去觸發客戶端的更新,可是當客戶端愈來愈多的時候hook支持的已經不夠優雅,另外每次增長客戶端都須要改動hook也是不現實的。