springcloud(六):配置中心git示例
隨著線(xiàn)上項(xiàng)目變的日益龐大,每個(gè)項(xiàng)目都散落著各種配置文件,如果采用分布式的開(kāi)發(fā)模式,需要的配置文件隨著服務(wù)增加而不斷增多。某一個(gè)基礎(chǔ)服務(wù)信息變更,都會(huì)引起一系列的更新和重啟,運(yùn)維苦不堪言也容易出錯(cuò)。配置中心便是解決此類(lèi)問(wèn)題的靈丹妙藥。
市面上開(kāi)源的配置中心有很多,BAT每家都出過(guò),360的QConf、淘寶的diamond、百度的disconf都是解決這類(lèi)問(wèn)題。國(guó)外也有很多開(kāi)源的配置中心Apache Commons Configuration、owner、cfg4j等等。這些開(kāi)源的軟件以及解決方案都很優(yōu)秀,但是我最鐘愛(ài)的卻是Spring Cloud Config,因?yàn)樗δ苋鎻?qiáng)大,可以無(wú)縫的和spring體系相結(jié)合,夠方便夠簡(jiǎn)單顏值高我喜歡。
Spring Cloud Config
在我們了解spring cloud config之前,我可以想想一個(gè)配置中心提供的核心功能應(yīng)該有什么
- 提供服務(wù)端和客戶(hù)端支持
- 集中管理各環(huán)境的配置文件
- 配置文件修改之后,可以快速的生效
- 可以進(jìn)行版本管理
- 支持大的并發(fā)查詢(xún)
- 支持各種語(yǔ)言
Spring Cloud Config可以完美的支持以上所有的需求。
Spring Cloud Config項(xiàng)目是一個(gè)解決分布式系統(tǒng)的配置管理方案。它包含了Client和Server兩個(gè)部分,server提供配置文件的存儲(chǔ)、以接口的形式將配置文件的內(nèi)容提供出去,client通過(guò)接口獲取數(shù)據(jù)、并依據(jù)此數(shù)據(jù)初始化自己的應(yīng)用。Spring cloud使用git或svn存放配置文件,默認(rèn)情況下使用git,我們先以git為例做一套示例。
首先在github上面創(chuàng)建了一個(gè)文件夾config-repo用來(lái)存放配置文件,為了模擬生產(chǎn)環(huán)境,我們創(chuàng)建以下三個(gè)配置文件:
// 開(kāi)發(fā)環(huán)境 neo-config-dev.properties // 測(cè)試環(huán)境 neo-config-test.properties // 生產(chǎn)環(huán)境 neo-config-pro.properties?
每個(gè)配置文件中都寫(xiě)一個(gè)屬性neo.hello,屬性值分別是 hello im dev/test/pro 。下面我們開(kāi)始配置server端
server 端
1、添加依賴(lài)
1 <dependencies> 2 <dependency> 3 <groupId>org.springframework.cloud</groupId> 4 <artifactId>spring-cloud-config-server</artifactId> 5 </dependency> 6 </dependencies>只需要加入spring-cloud-config-server包引用既可。
2、配置文件
1 server: 2 port: 8040 3 spring: 4 application: 5 name: spring-cloud-config-server 6 cloud: 7 config: 8 server: 9 git: 10 uri: https://github.com/ityouknow/spring-cloud-starter/ # 配置git倉(cāng)庫(kù)的地址 11 search-paths: config-repo # git倉(cāng)庫(kù)地址下的相對(duì)地址,可以配置多個(gè),用,分割。 12 username: # git倉(cāng)庫(kù)的賬號(hào) 13 password: # git倉(cāng)庫(kù)的密碼?
Spring Cloud Config也提供本地存儲(chǔ)配置的方式。我們只需要設(shè)置屬性spring.profiles.active=native,Config Server會(huì)默認(rèn)從應(yīng)用的src/main/resource目錄下檢索配置文件。也可以通過(guò)spring.cloud.config.server.native.searchLocations=file:E:/properties/屬性來(lái)指定配置文件的位置。雖然Spring Cloud Config提供了這樣的功能,但是為了支持更好的管理內(nèi)容和版本控制的功能,還是推薦使用git的方式。
3、啟動(dòng)類(lèi)
啟動(dòng)類(lèi)添加@EnableConfigServer,激活對(duì)配置中心的支持
1 @EnableConfigServer 2 @SpringBootApplication 3 public class ConfigServerApplication { 4 5 public static void main(String[] args) { 6 SpringApplication.run(ConfigServerApplication.class, args); 7 } 8 }到此server端相關(guān)配置已經(jīng)完成
4、測(cè)試
首先我們先要測(cè)試server端是否可以讀取到github上面的配置信息,直接訪(fǎng)問(wèn):http://localhost:8001/neo-config/dev
返回信息如下:
1 { 2 "name": "neo-config", 3 "profiles": [ 4 "dev" 5 ], 6 "label": null, 7 "version": null, 8 "state": null, 9 "propertySources": [ 10 { 11 "name": "https://github.com/ityouknow/spring-cloud-starter/config-repo/neo-config-dev.properties", 12 "source": { 13 "neo.hello": "hello im dev" 14 } 15 } 16 ] 17 }?
上述的返回的信息包含了配置文件的位置、版本、配置文件的名稱(chēng)以及配置文件中的具體內(nèi)容,說(shuō)明server端已經(jīng)成功獲取了git倉(cāng)庫(kù)的配置信息。
如果直接查看配置文件中的配置信息可訪(fǎng)問(wèn):http://localhost:8001/neo-config-dev.properties,返回:neo.hello: hello im dev
修改配置文件neo-config-dev.properties中配置信息為:neo.hello=hello im dev update,再次在瀏覽器訪(fǎng)問(wèn)http://localhost:8001/neo-config-dev.properties,返回:neo.hello: hello im dev update。說(shuō)明server端會(huì)自動(dòng)讀取最新提交的內(nèi)容
倉(cāng)庫(kù)中的配置文件會(huì)被轉(zhuǎn)換成web接口,訪(fǎng)問(wèn)可以參照以下的規(guī)則:
- /{application}/{profile}[/{label}]
- /{application}-{profile}.yml
- /{label}/{application}-{profile}.yml
- /{application}-{profile}.properties
- /{label}/{application}-{profile}.properties
以neo-config-dev.properties為例子,它的application是neo-config,profile是dev。client會(huì)根據(jù)填寫(xiě)的參數(shù)來(lái)選擇讀取對(duì)應(yīng)的配置。
client 端
主要展示如何在業(yè)務(wù)項(xiàng)目中去獲取server端的配置信息
1、添加依賴(lài)
1 <dependencies> 2 <dependency> 3 <groupId>org.springframework.cloud</groupId> 4 <artifactId>spring-cloud-starter-config</artifactId> 5 </dependency> 6 <dependency> 7 <groupId>org.springframework.boot</groupId> 8 <artifactId>spring-boot-starter-web</artifactId> 9 </dependency> 10 <dependency> 11 <groupId>org.springframework.boot</groupId> 12 <artifactId>spring-boot-starter-test</artifactId> 13 <scope>test</scope> 14 </dependency> 15 </dependencies>引入spring-boot-starter-web包方便web測(cè)試
2、配置文件
需要配置兩個(gè)配置文件,application.properties和bootstrap.properties
application.properties如下:
spring.application.name=spring-cloud-config-client server.port=8002bootstrap.properties如下:
spring.cloud.config.name=neo-config spring.cloud.config.profile=dev spring.cloud.config.uri=http://localhost:8001/ spring.cloud.config.label=master- spring.application.name:對(duì)應(yīng){application}部分
- spring.cloud.config.profile:對(duì)應(yīng){profile}部分
- spring.cloud.config.label:對(duì)應(yīng)git的分支。如果配置中心使用的是本地存儲(chǔ),則該參數(shù)無(wú)用
- spring.cloud.config.uri:配置中心的具體地址
- spring.cloud.config.discovery.service-id:指定配置中心的service-id,便于擴(kuò)展為高可用配置集群。
特別注意:上面這些與spring-cloud相關(guān)的屬性必須配置在bootstrap.properties中,config部分內(nèi)容才能被正確加載。因?yàn)閏onfig的相關(guān)配置會(huì)先于application.properties,而bootstrap.properties的加載也是先于application.properties。
3、啟動(dòng)類(lèi)
啟動(dòng)類(lèi)添加@EnableConfigServer,激活對(duì)配置中心的支持
1 @SpringBootApplication 2 public class ConfigClientApplication { 3 4 public static void main(String[] args) { 5 SpringApplication.run(ConfigClientApplication.class, args); 6 } 7 }啟動(dòng)類(lèi)只需要@SpringBootApplication注解就可以
4、web測(cè)試
使用@Value注解來(lái)獲取server端參數(shù)的值
1 @RestController 2 class HelloController { 3 @Value("${neo.hello}") 4 private String hello; 5 6 @RequestMapping("/hello") 7 public String from() { 8 return this.hello; 9 } 10 }?
啟動(dòng)項(xiàng)目后訪(fǎng)問(wèn):http://localhost:8002/hello,返回:hello im dev update說(shuō)明已經(jīng)正確的從server端獲取到了參數(shù)。到此一個(gè)完整的服務(wù)端提供配置服務(wù),客戶(hù)端獲取配置參數(shù)的例子就完成了。
我們?cè)谶M(jìn)行一些小實(shí)驗(yàn),手動(dòng)修改neo-config-dev.properties中配置信息為:neo.hello=hello im dev update1提交到github,再次在瀏覽器訪(fǎng)問(wèn)http://localhost:8002/hello,返回:neo.hello: hello im dev update,說(shuō)明獲取的信息還是舊的參數(shù),這是為什么呢?因?yàn)閟pringboot項(xiàng)目只有在啟動(dòng)的時(shí)候才會(huì)獲取配置文件的值,修改github信息后,client端并沒(méi)有在次去獲取,所以導(dǎo)致這個(gè)問(wèn)題。如何去解決這個(gè)問(wèn)題呢?留到下一章我們?cè)诮榻B。
示例代碼
轉(zhuǎn)載于:https://www.cnblogs.com/UniqueColor/p/7510481.html
總結(jié)
以上是生活随笔為你收集整理的springcloud(六):配置中心git示例的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: DStream算子讲解(一)
- 下一篇: 第1次作业:阅读优秀博文谈感想