在分佈式系統中,因爲服務數量巨多,爲了方便服務配置文件統一管理,實時更新,因此須要分佈式配置中心組件。市面上開源的配置中心有不少,BAT每家都出過,360的QConf、淘寶的diamond、百度的disconf都是解決這類問題。國外也有不少開源的配置中心Apache的Apache Commons Configuration、owner、cfg4j等等。在Spring Cloud中,有分佈式配置中心組件spring cloud config ,它支持配置服務放在配置服務的內存中(即本地),也支持放在遠程Git倉庫中。在spring cloud config 組件中,分兩個角色,一是config server,二是config client。git
Spring Cloud Config能夠完美的支持以上全部的需求。github
Spring Cloud Config項目是一個解決分佈式系統的配置管理方案。它包含了Client和Server兩個部分,server提供配置文件的存儲、以接口的形式將配置文件的內容提供出去,client經過接口獲取數據、並依據此數據初始化本身的應用。Spring cloud使用git或svn存放配置文件,默認狀況下使用git,咱們先以git爲例作一套示例。web
建立一個spring-boot項目,取名爲config-server,pom.xml中引入依賴:spring
<dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId> </dependency> <!--表示爲web工程--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!--暴露各類指標 貌似是必須的 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency> </dependencies>
新建入口類BootApplication:bootstrap
import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.config.server.EnableConfigServer; @SpringBootApplication @EnableConfigServer public class BootApplication { public static void main(String[] args) { SpringApplication.run(BootApplication.class, args); } }
application.properties:springboot
server.port=7010
spring.cloud.config.server.default-application-name=config-server
# 配置git倉庫地址
spring.cloud.config.server.git.uri=https://github.com/s***w*/myspringcloudconfig
# 配置倉庫路徑
spring.cloud.config.server.git.search-paths=myconfigpath
# 配置倉庫的分支
spring.cloud.config.label=master
# 訪問git倉庫的用戶名
spring.cloud.config.server.git.username=xxxxoooo
# 訪問git倉庫的用戶密碼 若是Git倉庫爲公開倉庫,能夠不填寫用戶名和密碼,若是是私有倉庫須要填寫
spring.cloud.config.server.git.password=xxxxoooo
遠程倉庫https://github.com/shaweiwei/myspringcloudconfig/ 中有個文件config-client-dev.properties文件中有一個屬性:併發
myww=myww version 2
啓動程序:訪問http://localhost:7010/myww/dev
app
證實配置服務中心能夠從遠程程序獲取配置信息。分佈式
http請求地址和資源文件映射以下:svn
從新建立一個springboot項目,取名爲config-client,其pom文件引入依賴:
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency>
其配置文件bootstrap.properties:
# 和git裏的文件名對應
spring.application.name=config-client
# 遠程倉庫的分支
spring.cloud.config.label=master
# dev 開發環境配置文件 | test 測試環境 | pro 正式環境
# 和git裏的文件名對應
spring.cloud.config.profile=dev
# 指明配置服務中心的網址
spring.cloud.config.uri= http://localhost:7010/
server.port=7020
程序的入口類,寫一個API接口「/hi」,返回從配置中心讀取的foo變量的值,代碼以下:
import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @SpringBootApplication @RestController public class BootApplication { public static void main(String[] args) { SpringApplication.run(BootApplication.class, args); } @Value("${myww}") // git配置文件裏的key String myww; @RequestMapping(value = "/hi") public String hi(){ return myww; } }
打開網址訪問:http://localhost:7020/hi,網頁顯示:
myww version 2
這就說明,config-client從config-server獲取了foo的屬性,而config-server是從git倉庫讀取的,如圖:
咱們在進行一些小實驗,手動修改service-config-dev.properties中配置信息提交到github,再次請求會看到仍是用的舊的配置,這是爲何?由於spirngboot項目只有在啓動的時候纔會獲取配置文件的值,修改github信息後,client端並無再次去獲取,因此致使這個問題。如何去解決這個問題呢?
本文源碼:http://download.csdn.net/download/u013081610/10152869