SpringCloud Config使用配置方法
Config 介紹
Spring Cloud Config項目是一個解決分佈式系統的配置管理方案。它包含瞭Client和Server兩個部分,server提供配置文件的存儲、以接口的形式將配置文件的內容提供出去,client通過接口獲取數據、並依據此數據初始化自己的應用。
構建配置中心
配置中心服務端配置
新建一個配置中心模塊,且註冊到eureka中,在其他服務的基礎上增加如下配置
pom文件增加配置服務端設置
<!--config配置中⼼服務端--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency>
配置需要增加如下配置
spring: application: name: zhao-service-config cloud: config: server: git: username: [email protected] password: xxx search-paths: - zhao-config-repo uri: https://gitee.com/kylezhen/zhao-config-repo.git label: main management: endpoints: web: exposure: include: "*" endpoint: health: show-details: always
需要註意的是我們盡量還是使用gitee作為遠程配置中心的拉取地址,否則會因為github網絡不暢出現各種問題。配置完成之後我們在啟動類加入@EnableConfigServer
@SpringBootApplication @EnableConfigServer @EnableDiscoveryClient public class ConfigApplication9007 { public static void main(String[] args) { SpringApplication.run(ConfigApplication9007.class,args); } }
即完成配置中心服務端配置,通過服務端直接訪問配置文件
配置中心客戶端配置以及手動刷新
pom文件添加
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-client</artifactId> </dependency>
配置文件重命名為bootstrap.yml之後增加對配置中心的使用。bootstrap.yml是系統級別的,優先級⽐application.yml⾼,應⽤啟動時會檢查這個配置⽂件,在這個配置⽂件中指定配置中⼼的服務地址,會⾃動拉取所有應⽤配置並且啟⽤。配置暴露健康檢查等端點接⼝,以更新配置
spring cloud: config: name: zhao-service-resume profile: dev label: main uri: http://localhost:9007 management: endpoints: web: exposure: include: "*"
經過配置之後增加配置訪問的內容
@RestController @RequestMapping("/config") public class ConfigController { // 和取本地配置信息一樣 @Value("${zhao.name}") private String name; // @Value("${mysql.url}") // private String mysqlUrl; // 內存級別的配置信息 // 數據庫,redis配置信息 @GetMapping("/viewconfig") public String viewconfig() { return "zhaoname==>" + name; } }
訪問改獲取配置的接口
但是這樣無法獲取最新配置,我們需要在獲取配置的配置類上加入@RefreshScope註解。並且在更改後手動向使用配置文件的服務健康檢查接口發送POST請求才能更新
返回為空表示無變更數據,上述為正常獲取到配置文件變更
借助Spring Cloud Bus動態刷新配置
網上的教程多以官方支持的Rabbitmq和kafka作為基礎來實現,我這裡以阿裡自己的Rocketmq為例來進行操作
<dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-bus-rocketmq</artifactId> <version>2.1.0.RELEASE</version> </dependency>
在配置中心的服務端和客戶端中進行相應的配置
spring: application: name: zhao-service-config cloud: config: server: git: username: @qq.com password: xxx search-paths: - zhao-config-repo uri: https://gitee.com/kylezhen/zhao-config-repo.git label: main bus: enabled: true rocketmq: name-server: 127.0.0.1:9876
通過訪問http://localhost:9007/actuator/bus-refresh 即可將配置改變推送到配置
到此這篇關於SpringCloud Config使用的文章就介紹到這瞭,更多相關SpringCloud Config內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- spring cloud config和bus組件實現自動刷新功能
- SpringCloud微服務之Config知識總結
- 解決SpringCloud Config結合github無法讀取配置的問題
- SpringCloud Tencent 全套解決方案源碼分析
- spring cloud如何集成nacos配置中心