Spring Cloud Config 配置中心

請將遠程配置文件的格式寫對:

好比使用 *.yml 或者 *.propertiesjava

yml:git

testconfig: testvalue

 

properties:github

testconfig=testvalue

 

服務器配置文件:web

 

調用config server url後返回的json數據:spring

紅框中爲配置正確後解析樣子:json

 

 

不然沒法解析!bootstrap

 

1、簡介

在分佈式系統中,因爲服務數量巨多,爲了方便服務配置文件統一管理,實時更新,因此須要分佈式配置中心組件。在Spring Cloud中,有分佈式配置中心組件spring cloud config ,它支持配置服務放在配置服務的內存中(即本地),也支持放在遠程Git倉庫中。在spring cloud config 組件中,分兩個角色,一是config server,二是config client。springboot

2、構建Config Server

建立一個spring-boot項目,取名爲config-server,pom.xml中引入依賴:服務器

複製代碼
<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:app

複製代碼
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:

複製代碼
server.port=7010
spring.cloud.config.server.default-application-name=config-server

# 配置git倉庫地址
spring.cloud.config.server.git.uri=https://github.com/shaweiwei/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

證實配置服務中心能夠從遠程程序獲取配置信息。

http請求地址和資源文件映射以下:

  • /{application}/{profile}[/{label}]
  • /{application}-{profile}.yml
  • /{label}/{application}-{profile}.yml
  • /{application}-{profile}.properties
  • /{label}/{application}-{profile}.properties

 

3、構建一個config client

從新建立一個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倉庫讀取的,如圖:

Azure (2).png

本文源碼:http://download.csdn.net/download/u013081610/10152869

相關文章
相關標籤/搜索