91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spring cloud config 配置中心快速實現過程解析

發布時間:2020-08-26 08:54:18 來源:腳本之家 閱讀:163 作者:云天 欄目:編程語言

spring-cloud-config 配置中心實現

Spring Cloud Config 用于為分布式系統中的基礎設施和微服務應用提供集中化的外部配置支持,分為server端和client端。

server端為分布式配置中心,是一個獨立的微服務應用;client端為分布式系統中的基礎設置或微服務應用,通過指定配置中心來管理相關的配置。

Spring Cloud Config 構建的配置中心,除了適用于 Spring 構建的應用外,也可以在任何其他語言構建的應用中使用。
Spring Cloud Config 默認采用 Git 存儲配置信息,支持對配置信息的版本管理。

本示例主要內容

  • 配置中心演示client端和server端實現
  • 配置文件放在git(因github有時候不太穩定,我放到了國內服務器)
  • 版本切換(test、pro、dev)

Spring Cloud Config 特點

  • 提供server端和client端支持(Spring Cloud Config Server和Spring Cloud Config Client);
  • 集中式管理分布式環境下的應用配置;
  • 基于Spring環境,實現了與Spring應用無縫集成;
  • 可用于任何語言開發的程序;
  • 默認實現基于Git倉庫(也支持SVN),從而可以進行配置的版本管理;同時也支持配置從本地文件或數據庫讀取。

代碼構建

server端實現

1.pom.xml添加maven依賴

 <dependencies>
  <dependency>
   <groupId>org.springframework.cloud</groupId>
   <artifactId>spring-cloud-config-server</artifactId>
  </dependency>
 </dependencies>

2.application.yml配置

server:
 port: 8001
spring:
 application:
 name: cloud-config-server
 cloud:
 config:
  server:
  git:
   uri: https://gitee.com/tqlin/spring-boot-demo.git #因為github有時候不穩定,我這里改到了碼云倉
   searchPaths: /cloud-config/config-repo/   #配置文件目錄
   force-pull: true

3.CloudConfigServerApplication.java啟動類

@EnableConfigServer
@SpringBootApplication
public class CloudConfigServerApplication {

 public static void main(String[] args) {
  SpringApplication.run(CloudConfigServerApplication.class, args);
 }
}

client端實現

1.pom.xml添加maven依賴

 <dependencies>
  <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-test</artifactId>
   <scope>test</scope>
  </dependency>
 </dependencies>

2.bootstrap.properties配置文件

spring.cloud.config.name=easy-config
spring.cloud.config.profile=test
spring.cloud.config.uri=http://localhost:8001/
spring.cloud.config.label=master
  • spring.application.name:對應{application}部分
  • spring.cloud.config.profile:對應{profile}部分
  • spring.cloud.config.label:對應git的分支。如果配置中心使用的是本地存儲,則該參數無用
  • spring.cloud.config.uri:配置中心的具體地址(sever端地址)
  • spring.cloud.config.discovery.service-id:指定配置中心的service-id,便于擴展為高可用配置集群。

特別注意:Spring Cloud 構建于 Spring Boot 之上,在 Spring Boot 中有兩種上下文,一種是 bootstrap, 另外一種是 application, bootstrap 是應用程序的父上下文,也就是說 bootstrap 加載優先于 applicaton。bootstrap 主要用于從額外的資源來加載配置信息,還可以在本地外部配置文件中解密屬性。

這兩個上下文共用一個環境,它是任何Spring應用程序的外部屬性的來源。bootstrap 里面的屬性會優先加載,它們默認也不能被本地相同配置覆蓋。

3.application.properties配置文件

spring.application.name=cloud-config-client
server.port=8002

運行示例

1.首先在碼云上面創建一個文件夾config-repo用來存放配置文件,我們創建以下三個配置文件:

 // 開發環境
 easy-config-dev.properties 內容為:easy.hello=dev config
 // 測試環境
 easy-config-test.properties 內容為:easy.hello=test config
 // 生產環境
 easy-config-pro.properties 內容為:easy.hello=pro config

根據上面構建的代碼指定的項目地址為:https://gitee.com/tqlin/spring-boot-demo.git 目錄為: /cloud-config/config-repo/

2.分別運行server端和client端

找到CloudConfigServerApplication.java、CloudConfigClientApplication.java分別運行

3.測試server端

直接訪問:http://localhost:8001/easy-config/dev

我們看到成功返回了開發配置文件信息

{
name: "easy-config",
profiles: [
"dev"
],
label: null,
version: "6053b4c1c2343ac27e822b2a9b60c6343be72f96",
state: null,
propertySources: [
{
name: "https://gitee.com/tqlin/spring-boot-demo.git/cloud-config/config-repo/easy-config-dev.properties",
source: {
easy.hello: "dev config"
}
}
]
}

訪問:http://localhost:8001/easy-config/test、http://localhost:8001/easy-config/pro,相應的會返回測試及正式環境的配置

倉庫中的配置文件會被轉換成web接口,訪問可以參照以下的規則:

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

以easy-config-dev.properties為例子,它的application是easy-config,profile是dev。client會根據填寫的參數來選擇讀取對應的配置。

4.測試client端

訪問:http://localhost:8002/hello 我們發現界面成功返回了 test config,說明測試配置文件client端讀取成功了

我們修改bootstrap.properties配置的spring.cloud.config.profile的值為dev,重啟client端,訪問:http://localhost:8002/hello 這時候界面返回 dev config,表示開發配置訪問成功。

資料

Spring Cloud Config 示例源碼

官網文檔

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

凤凰县| 玉树县| 安吉县| 西丰县| 海林市| 临朐县| 安西县| 宜君县| 盐池县| 云南省| 绥宁县| 无锡市| 前郭尔| 贡觉县| 南澳县| 睢宁县| 忻城县| 扎赉特旗| 山阳县| 咸宁市| 巨鹿县| 湘乡市| 和平区| 平顶山市| 左权县| 如皋市| 高青县| 称多县| 阿合奇县| 宁波市| 望城县| 南丰县| 白河县| 天水市| 灵丘县| 冀州市| 本溪市| 偏关县| 山阳县| 古丈县| 化德县|