spring cloud分散式微服務:Spring Cloud Config
Spring Cloud Config是Spring Cloud團隊建立的一個全新專案,用來為分散式系統中的基礎設施和微服務應用
提供集 中化的外部配置支援,它分為服務端與客戶端兩個部分。其中服務端也稱為分散式配置中心,它是一個獨
立的微服務應用, 用來連線配置倉庫併為客戶端提供獲取配置資訊、加密/解密資訊等訪問介面;而客戶端則是微
服務架構中的各個微服務應 用或基礎設施,它們透過指定的配置中心來管理應用資源與業務相關的配置內容,並在
啟動的時候從配置中心獲取和載入配 置資訊。Spring Cloud Config實現了對服務端和客戶端中環境變數和屬性配置
的抽象對映,所以它除了適用於Spring構建 的應用程式之外,也可以在任何其他語言執行的應用程式中使用。由於
Spring Cloud Config實現的配置中心預設採用Git 來 儲存配置資訊,所以使用Spring Cloud Config構建的配置伺服器,
天然就支援對微服務應用配置資訊的版本管理,並且可以透過Git客戶端工具來方便的管理和訪問配置內容。當然它也提
供了對其他儲存方式的支援,比如:SVN倉庫、本地化檔案系統。
在本文中,我們將學習如何構建一個基於Git儲存的分散式配置中心,並對客戶端進行改造,並讓其能夠從配置中心獲取
配置資訊並繫結到程式碼中的整個過程。
準備配置倉庫
準備一個git倉庫,可以在碼雲或Github上建立都可以。
假設我們讀取配置中心的應用名為config-client,那麼我們可以在git倉庫中該專案的預設配置檔案config-client.yml:
info: profile: default
為了演示載入不同環境的配置,我們可以在git倉庫中再建立一個針對dev環境的配置檔案config-client-dev.yml:
info: profile: dev
構建配置中心
透過Spring Cloud Config來構建一個分散式配置中心非常簡單,只需要三步:
建立一個基礎的Spring Boot工程,命名為:config-server-git,並在pom.xml中引入下面的依賴(省略了parent和
dependencyManagement部分):
<dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency> </dependencies>
建立Spring Boot的程式主類,並新增@EnableConfigServer註解,開啟Spring Cloud Config的服務端功能。
@EnableConfigServer @SpringBootApplication public class Application { public static void main(String[] args) { new SpringApplicationBuilder(Application.class).web(true).run(args); } }
在application.yml中新增配置服務的基本資訊以及Git倉庫的相關資訊,例如:
spring application: name: config-server cloud: config: server: git: uri: server: port: 1201
到這裡,使用一個透過Spring Cloud Config實現,並使用Git管理配置內容的分散式配置中心就已經完成了。我們可以將該應用先啟動起來,確保沒有錯誤產生,然後再嘗試下面的內容。
如果我們的Git倉庫需要許可權訪問,那麼可以透過配置下面的兩個屬性來實現; spring.cloud.config.server.git.username:訪問Git倉庫的使用者名稱 spring.cloud.config.server.git.password:訪問Git倉庫的使用者密碼
完成了這些準備工作之後,我們就可以透過瀏覽器、POSTMAN或CURL等工具直接來訪問到我們的配置內容了。瞭解springcloud架構可以加求求:三五三六二四七二五九.訪問配置資訊的URL與配置檔案的對映關係如下:
/{application}/{profile}[/{label}] /{application}-{profile}.yml /{label}/{application}-{profile}.yml /{application}-{profile}.properties /{label}/{application}-{profile}.properties
上面的url會對映{application}-{profile}.properties對應的配置檔案,其中{label}對應Git上不同的分支,預設為master。我們可以嘗試構造不同的url來訪問不同的配置內容,比如,要訪問master分支,config-client應用的dev環境,就可以訪問這個url:http://localhost:1201/config-client/dev/master,並獲得如下返回:
{ "name": "config-client", "profiles": [ "dev" ], "label": "master", "version": null, "state": null, "propertySources": [ { "name": "config-client-dev.yml", "source": { "info.profile": "dev" } }, { "name": "config-client.yml", "source": { "info.profile": "default" } } ] }
我們可以看到該Json中返回了應用名:config-client,環境名:dev,分支名:master,以及default環境和dev環境的配置內容。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69952307/viewspace-2673523/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- spring cloud微服務分散式雲架構-Spring Cloud Config環境庫SpringCloud微服務分散式架構
- spring cloud微服務分散式雲架構Spring Cloud ZuulSpringCloud微服務分散式架構Zuul
- spring cloud微服務分散式雲架構-Spring Cloud NetflixSpringCloud微服務分散式架構
- spring cloud微服務分散式雲架構-Spring Cloud BusSpringCloud微服務分散式架構
- spring cloud微服務分散式雲架構- Config 快速開始SpringCloud微服務分散式架構
- spring cloud微服務分散式雲架構 - Spring Cloud簡介SpringCloud微服務分散式架構
- (一)spring cloud微服務分散式雲架構 - Spring Cloud簡介SpringCloud微服務分散式架構
- (一)spring cloud微服務分散式雲架構-Spring Cloud簡介SpringCloud微服務分散式架構
- Spring Cloud(八)高可用的分散式配置中心 Spring Cloud ConfigSpringCloud分散式
- Spring Cloud實戰系列(六) - 分散式配置中心Spring Cloud ConfigSpringCloud分散式
- Spring Cloud(九)高可用的分散式配置中心 Spring Cloud Config 整合 Eureka 服務SpringCloud分散式
- spring cloud微服務分散式雲架構-Spring Cloud 分散式的五大重點SpringCloud微服務分散式架構
- spring cloud微服務分散式雲架構 - Spring Cloud整合專案簡介SpringCloud微服務分散式架構
- Spring Cloud(二):Spring Cloud ConfigSpringCloud
- (十五)spring cloud微服務分散式雲架構-commonservice-config配置服務搭建SpringCloud微服務分散式架構
- spring cloud微服務分散式雲架構-config配置自動重新整理SpringCloud微服務分散式架構
- Spring Cloud Config 分散式配置中心【Finchley 版】SpringCloud分散式
- (三)spring cloud微服務分散式雲架構 - Spring Cloud整合專案簡介SpringCloud微服務分散式架構
- Java架構-(一)spring cloud微服務分散式雲架構 - Spring Cloud簡介Java架構SpringCloud微服務分散式
- spring cloud微服務分散式雲架構(一)-spring cloud 服務註冊與發現SpringCloud微服務分散式架構
- 微服務SpringCloud之Spring Cloud Config配置中心Git微服務SpringGCCloudGit
- 非spring boot (即spring) 使用/整合 Spring cloud Config 分散式配置中心Spring BootCloud分散式
- spring cloud 和 阿里微服務spring cloud AlibabaSpringCloud阿里微服務
- SpringCloud分散式微服務雲架構 第六篇: 分散式配置中心(Spring Cloud Config)SpringGCCloud分散式微服務架構
- java版電子商務spring cloud分散式微服務-大話Spring CloudJavaSpringCloud分散式微服務
- Spring Cloud-honghu Cloud分散式微服務雲系統SpringCloud分散式微服務
- 微服務Spring Cloud17_Spring Cloud概述3微服務SpringCloud
- spring cloud springboot mybatis 分散式 微服務 架構原始碼CloudSpring BootMyBatis分散式微服務架構原始碼
- spring cloud微服務分散式雲架構--hystrix的使用SpringCloud微服務分散式架構
- spring cloud微服務分散式雲架構-Gateway入門SpringCloud微服務分散式架構Gateway
- spring cloud微服務分散式雲架構-Commons 普通抽象SpringCloud微服務分散式架構抽象
- Spring Cloud Spring Boot mybatis分散式微服務雲架構CloudSpring BootMyBatis分散式微服務架構
- spring cloud微服務分散式雲架構--服務註冊(consul)SpringCloud微服務分散式架構
- (十七)spring cloud微服務分散式雲架構-eureka 基礎SpringCloud微服務分散式架構
- spring cloud分散式微服務-配置中心git示例SpringCloud分散式微服務Git
- 微服務 | Spring Cloud(一):從單體SSM 到 Spring Cloud微服務SpringCloudSSM
- spring cloud 微服務實戰SpringCloud微服務
- spring cloud微服務分散式雲架構-服務消費者FeignSpringCloud微服務分散式架構