SpringCloud(六)--Config

禾白少二發表於2020-12-03

config 配置中心

配置中心

yml 配置檔案儲存到 git 伺服器,例如 github.com 或 gitee.com

微服務啟動時,從伺服器獲取配置檔案

github 上存放配置檔案

新建 “Project”,命名為 config

新建空白專案
新建空白專案

將sp02,sp03,sp04,sp11四個專案的yml配置檔案,複製到config專案,並改名

  • item-service-dev.yml
  • user-service-dev.yml
  • order-service-dev.yml
  • zuul-dev.yml

配置檔案
最後,清空四個專案中的application.yml檔案

禁止配置中心的配置資訊覆蓋客戶端配置

預設配置中心配置優先順序高,配置中心配置會覆蓋客戶端的所有配置,包括命令列引數配置,這樣我們在item-service和order-service中配置的埠號啟動引數會無效

item-service 啟動引數:

  • --service.port=8001
  • --service.port=8002

order-service 啟動引數

  • --service.port=8201
  • --service.port=8202

可以設定禁止配置中心的配置將客戶端配置覆蓋掉,這樣當我們從控制中心拉取配置檔案後,本地的配置會覆蓋拉去來的配置
在四個配置檔案中新增下面的配置

spring:
  ......
  cloud:
    config:
      override-none: true

準備倉庫

  1. 新建module: config,當做一個資料夾,用來存放配置檔案
  2. 把 2,3,4,11 專案的配置檔案,放到 config 資料夾
  3. springcloud1 工程目錄建立本地倉庫

    1. VCS - Import into version control - Create git repository
    2. 選擇 springcloud1 工程目錄設定成本地倉庫
  4. 把本地倉庫提交推送到gitee遠端倉庫

    1. ctrl + k 或 VCS - commit
    2. 勾選要提交的檔案,填寫提交資訊,點選提交
    3. ctrl+shift+k 或 VCS - git - push
    4. 點選左上角 define remote

Config 伺服器

config 配置中心從 git 下載所有配置檔案。
而其他微服務啟動時從 config 配置中心獲取配置資訊。

新建 sp12-config 專案

新建專案

選擇依賴

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.1.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>cn.tedu</groupId>
    <artifactId>sp12-config</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>sp12-config</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
        <spring-cloud.version>Hoxton.RELEASE</spring-cloud.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-config-server</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>${spring-cloud.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

application.yml

spring:
  application:
    name: config-server

  cloud:
    config:
      server:
        git:
          uri: https://gitee.com/Mjp3309/springcloud1
          search-paths: config
          #私有倉庫需要配置使用者名稱密碼
          #username:
          #password:
server:
  port: 6001


eureka:
  client:
    service-url:
      defaultZone: http://eureka1:2001/eureka,http://eureka2:2002/eureka

主程式新增 @EnableConfigServer@EnableDiscoveryClient

package cn.tedu.sp12;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.config.server.EnableConfigServer;

@EnableConfigServer//啟動配置中心服務
@EnableDiscoveryClient
@SpringBootApplication
public class Sp12ConfigApplication {

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

}

啟動,訪問測試

訪問 item-service-dev.yml 可以使用以下形式:

http://localhost:6001/item-service-dev.yml
http://localhost:6001/item-service/dev

測試其他檔案

http://localhost:6001/user-service/dev
http://localhost:6001/zuul/dev
http://localhost:6001/order-service/dev

config 客戶端

修改以下專案,從配置中心獲取配置資訊

  • sp02-itemservice
  • sp03-userservice
  • sp04-orderservice
  • sp11-zuul

pom.xml 新增 config 客戶端依賴

右鍵點選專案,編輯起步依賴,新增 config client 依賴
編輯起步依賴

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

在四個專案中新增 bootstrap.yml

bootstrap.yml,引導配置檔案,先於 application.yml 載入

  • item-service
spring: 
  cloud:
    config:
      discovery:
        enabled: true
        service-id: config-server
      name: item-service
      profile: dev
      
eureka:
  client:
    service-url:
      defaultZone: http://eureka1:2001/eureka, http://eureka2:2002/eureka
  • user-service
spring: 
  cloud:
    config:
      discovery:
        enabled: true
        service-id: config-server
      name: user-service
      profile: dev
      
eureka:
  client:
    service-url:
      defaultZone: http://eureka1:2001/eureka, http://eureka2:2002/eureka
  • order-service
spring: 
  cloud:
    config:
      discovery:
        enabled: true
        service-id: config-server
      name: order-service
      profile: dev
      
eureka:
  client:
    service-url:
      defaultZone: http://eureka1:2001/eureka, http://eureka2:2002/eureka
  • zuul
spring: 
  cloud:
    config:
      discovery:
        enabled: true
        service-id: config-server
      name: zuul
      profile: dev
      
eureka:
  client:
    service-url:
      defaultZone: http://eureka1:2001/eureka, http://eureka2:2002/eureka

啟動服務,觀察從配置中心獲取配置資訊的日誌(先啟動配置中心和註冊中心)

啟動專案

config

配置重新整理

spring cloud 允許執行時動態重新整理配置,可以重新從配置中心獲取新的配置資訊

user-service 為例演示配置重新整理

pom.xml

user-service 的 pom.xml 中新增 actuator 依賴
右鍵點選sp03-user-service專案,編輯起步依賴,新增 actuator 依賴
編輯起步依賴

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

相關文章