中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

SpringCloud搭建Config的過程是什么

發布時間:2022-04-07 10:53:27 來源:億速云 閱讀:256 作者:iii 欄目:編程語言

這篇文章主要講解了“SpringCloud搭建Config的過程是什么”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“SpringCloud搭建Config的過程是什么”吧!

利用spring cloud 的 spring-cloud-config-server 組件 搭建自己的配置中心 config-server

配置文件可以存放在 github ,gitlab 等上面,搭建自己的注冊中心,完成對配置的統一管理和訪問,后期我們會實現配置的動態刷新。

把配置文件放在github 上

https://github.com/halouprogramer/spring-config-repository

文件名格式

應用名-環境配置.yml

例如: spring-school(應用名)-dev(profiles 環境配置)

server 端配置:

1.pom引入

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

2. 配置文件

spring: application:  name: spring-config cloud:  config:   server:    git:     uri: https://github.com/halouprogramer/spring-config-repository.git#     username: ***#     password: ***     basedir: ~/temp/gitlab

3.啟動類注解

import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.cloud.config.server.EnableConfigServer;import org.springframework.cloud.netflix.eureka.EnableEurekaClient;@EnableEurekaClient@EnableConfigServer@SpringBootApplicationpublic class SpringConfigApplication {  public static void main(String[] args) {   SpringApplication.run(SpringConfigApplication.class, args);  }}

本地啟動server端訪問自己在倉庫中存在的配置 http://localhost:8083/spring-school-dev.yml ,如果訪問得到說明沒有問題

客戶端通過配置中心拉去配置:

spring: application:  name: spring-school cloud:  config:   discovery:    enabled: true    service-id: SPRING-CONFIG #訪問配置中心項目名稱   profile: dev profiles:  active: dev

感謝各位的閱讀,以上就是“SpringCloud搭建Config的過程是什么”的內容了,經過本文的學習后,相信大家對SpringCloud搭建Config的過程是什么這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

荆州市| 博湖县| 元阳县| 华宁县| 彝良县| 荃湾区| 任丘市| 收藏| 革吉县| 桑植县| 保靖县| 射阳县| 星座| 休宁县| 龙州县| 宜黄县| 迭部县| 张家口市| 凯里市| 波密县| 沈阳市| 岳阳市| 墨竹工卡县| 文化| 神池县| 东丰县| 永修县| 诸暨市| 铜山县| 迁西县| 油尖旺区| 龙里县| 洞头县| 饶阳县| 达日县| 崇州市| 永定县| 怀柔区| 湖南省| 绥芬河市| 福贡县|