1. 程式人生 > >跟我學習Spring Cloud Config - 快速開始

跟我學習Spring Cloud Config - 快速開始

json con 遠程 cloud sin curl ces 資源 data-

啟動服務器:

$ cd spring-cloud-config-server
$ ../mvnw spring-boot:run

該服務器是一個Spring Boot應用程序,所以你可以從IDE運行它,而不是喜歡(主類是ConfigServerApplication)。然後嘗試一個客戶端:

$ curl localhost:8888/foo/development
{"name":"development","label":"master","propertySources":[
  {"name":"https://github.com/scratches/config-repo/foo-development.properties","source":{"bar":"spam"}},
  {"name":"https://github.com/scratches/config-repo/foo.properties","source":{"foo":"bar"}}
]}

定位資源的默認策略是克隆一個git倉庫(在spring.cloud.config.server.git.uri),並使用它來初始化一個迷你SpringApplication迷你應用程序的Environment用於枚舉屬性源並通過JSON端點發布。

HTTP服務具有以下格式的資源:

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

其中“應用程序”作為SpringApplication中的spring.config.name註入(即常規Spring Boot應用程序中通常為“應用程序”),“配置文件”是活動配置文件(或逗號分隔列表)的屬性),“label”是可選的git標簽(默認為“master”)。

Spring Cloud Config服務器從git存儲庫中提取遠程客戶端的配置(必須提供):

spring:
  cloud:
    config:
      server:
        git:
          uri: https://github.com/spring-cloud-samples/config-repo

更多資料和源碼來源

跟我學習Spring Cloud Config - 快速開始