SpringCloud分布式配置中心

一、什么是配置中心

  在分布式系统中,由于服务数量巨多,为了方便服务配置文件统一管理,实时更新,所以需要分布式配置中心组件。在Spring Cloud中,有分布式配置中心组件spring cloud config ,它支持配置服务放在配置服务的内存中(即本地),也支持放在远程Git仓库中。在spring cloud config 组件中,分两个角色,一是config server,二是config client。

二、创建git地址

  1、使用码云创建git地址 https://gitee.com

  2、config-client-dev.properties  ---dev环境

    SpringCloud分布式配置中心_第1张图片

  3、上传配置文件到码云仓库

    SpringCloud分布式配置中心_第2张图片

 三、查询配置中心http://localhost:8000/foo/dev

  1、目录展示

    SpringCloud分布式配置中心_第3张图片

   2、导入依赖  

<dependencies>
    <dependency>
      <groupId>junitgroupId>
      <artifactId>junitartifactId>
      <version>4.11version>
      <scope>testscope>
    dependency>

    <dependency>
      <groupId>org.springframework.cloudgroupId>
      <artifactId>spring-cloud-config-serverartifactId>
    dependency>
  dependencies>
  <dependencyManagement>
    <dependencies>
      
      <dependency>
        <groupId>org.springframework.cloudgroupId>
        <artifactId>spring-cloud-dependenciesartifactId>
        <version>Greenwich.RELEASEversion>
        <type>pomtype>
        <scope>importscope>
      dependency>

    dependencies>
  dependencyManagement>

  3、application.properties配置文件

    SpringCloud分布式配置中心_第4张图片    

    spring.cloud.config.server.git.uri:配置git仓库地址

    SpringCloud分布式配置中心_第5张图片

    spring.cloud.config.server.git.searchPaths:配置仓库路径

    spring.cloud.config.label:配置仓库的分支

    spring.cloud.config.server.git.username:访问git仓库的用户名

    spring.cloud.config.server.git.password:访问git仓库的用户密码

  4、StartSpringCloudConfig启动类

    SpringCloud分布式配置中心_第6张图片

   5、访问配置中心

    

 四、创建config-client项目

  1、目录展示

    SpringCloud分布式配置中心_第7张图片

   2、导入依赖

<dependencies>
    <dependency>
      <groupId>junitgroupId>
      <artifactId>junitartifactId>
      <version>4.11version>
      <scope>testscope>
    dependency>
    <dependency>
      <groupId>org.springframework.cloudgroupId>
      <artifactId>spring-cloud-starter-configartifactId>
    dependency>
    <dependency>
      <groupId>org.springframework.bootgroupId>
      <artifactId>spring-boot-starter-webartifactId>
    dependency>
  dependencies>
  <dependencyManagement>
    <dependencies>
      
      <dependency>
        <groupId>org.springframework.cloudgroupId>
        <artifactId>spring-cloud-dependenciesartifactId>
        <version>Greenwich.RELEASEversion>
        <type>pomtype>
        <scope>importscope>
      dependency>

    dependencies>
  dependencyManagement>

  3、bootstrap.properties配置文件

    SpringCloud分布式配置中心_第8张图片

   4、ConfigClientController

    SpringCloud分布式配置中心_第9张图片  

    SpringCloud分布式配置中心_第10张图片

  5、StartConfigClient启动类    

package com.zn;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

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

   6、效果展示

    SpringCloud分布式配置中心_第11张图片 

    SpringCloud分布式配置中心_第12张图片

你可能感兴趣的:(SpringCloud分布式配置中心)