本文接以前的《5--SpringCloud搭建分佈式配置中心》,繼續來講說Spring Cloud Config的使用。html
先來回顧一下,在前文中咱們完成了什麼:git
在本文中,咱們繼續來看看Spring Cloud Config的一些其餘能力。web
Config Server與服務註冊中心同樣,咱們也須要將其擴展爲高可用的集羣。spring
因此,簡單的方法就是把config-server也註冊爲服務,這樣全部客戶端就能以服務的方式進行訪問。經過這種方法,只須要啓動多個指向同一Git倉庫位置的config-server就能實現高可用了。bootstrap
首先搭建一個服務註冊中心:若是不知道怎麼搭建服務註冊中心請閱讀:《1--SpringCloud的服務註冊與發現Eureka》app
在pom.xml
的dependencies節點中引入以下依賴,相比以前的config-server就,加入了spring-cloud-starter-eureka
,用來註冊服務分佈式
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Brixton.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
配置application.properties新增# 配置服務註冊中心 eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka/spring-boot
spring.application.name=config-server server.port=7001 # 配置服務註冊中心 eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka/ # git配置 #所在項目根目錄 spring.cloud.config.server.git.uri=https://gitee.com/cengjiang/springcloud_learning/ #所在地址目錄 spring.cloud.config.server.git.searchPaths=5--SpringCloud--Config #若是是公開項目則不用寫用戶名密碼 spring.cloud.config.server.git.username=username spring.cloud.config.server.git.password=password
在應用主類中,新增@EnableDiscoveryClient
註解,用來將config-server註冊到上面配置的服務註冊中心上去。工具
@EnableConfigServer @EnableDiscoveryClient @SpringBootApplication public class Application { public static void main(String[] args) { new SpringApplicationBuilder(Application.class).web(true).run(args); } }
啓動該應用,並訪問http://localhost:1111/
,能夠在Eureka Server的信息面板中看到config-server已經被註冊了。post
同config-server同樣,在pom.xml
的dependencies節點中新增spring-cloud-starter-eureka
依賴,用來註冊服務:
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka</artifactId> </dependency>
在bootstrap.properties
中,按以下配置:
server.port=7002 #對應前配置文件中的{application}部分 spring.application.name=ghghspace eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka/ #參數設置爲true,開啓經過服務來訪問Config Server的功能 spring.cloud.config.discovery.enabled=true #對應前配置文件中的{profile}部分 spring.cloud.config.profile=dev #對應前配置文件的git分支 spring.cloud.config.label=master #配置中心的訪問地址 spring.cloud.config.uri=http://localhost:7001/
經過eureka.client.serviceUrl.defaultZone
參數指定服務註冊中心,用於服務的註冊與發現,再將spring.cloud.config.discovery.enabled
參數設置爲true,開啓經過服務來訪問Config Server的功能
在應用主類中,增長@EnableDiscoveryClient
註解,用來發現config-server服務,利用其來加載應用配置
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; @EnableDiscoveryClient @SpringBootApplication public class Application { public static void main(String[] args) { new SpringApplicationBuilder(Application.class).web(true).run(args); } }
沿用以前咱們建立的Controller來加載Git中的配置信息
@RefreshScope @RestController public class TestController { @Value("${from}") private String from; @RequestMapping("/from") public String from() { return this.from; } }
完成了上述配置以後,咱們啓動該客戶端應用。若啓動成功,訪問http://localhost:1111/
,能夠在Eureka Server的信息面板中看到該應用已經被註冊成功了。
訪問客戶端應用提供的服務:http://localhost:7002/from
會返回信息
有時候,咱們須要對配置內容作一些實時更新的場景,那麼Spring Cloud Config是否能夠實現呢?答案顯然是能夠的。下面,咱們看看如何進行改造來實現配置內容的實時更新。
在改造程序以前,咱們先將config-server和config-client都啓動起來,並訪問客戶端提供的REST APIhttp://localhost:7002/from
來獲取配置信息,能夠得到返回內容爲:git-dev-1.0
。
接着,咱們能夠嘗試使用Git工具修改當前配置的內容,好比,將5--SpringCloud--Config/didispace-dev.properties
中的from的值從from=git-dev-1.0
修改成from=git-dev-2.0
,再訪問http://localhost:7002/from
,能夠看到其返回內容仍是git-dev-1.0
。
下面,咱們將在config-client端增長一些內容和操做以實現配置的刷新:
在config-clinet的pom.xml
中新增spring-boot-starter-actuator
監控模塊,其中包含了/refresh
刷新API。
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>
從新啓動config-clinet,訪問一次http://localhost:7002/from
,能夠看到當前的配置值
5--SpringCloud--Config
/didispace-dev.properties
文件中from
的值http://localhost:7002/from
,能夠看到配置值沒有改變http://localhost:7002/refresh
,咱們能夠看到返回內容以下,表明from
參數的配置內容被更新了(請求須要爲POST請求,get請求爲405)[ "from" ]
再次訪問一次http://localhost:7002/from
,能夠看到配置值已是更新後的值了經過上面的介紹,你們不難想到,當有Git提交變化時,就給對應的配置主機發送/refresh
請求來實現配置信息的實時更新。