SpringCloud Config统一配置中心

Posted haohao1234

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringCloud Config统一配置中心相关的知识,希望对你有一定的参考价值。

config会从git拉取配置文件到本地,然后读取本地文件

eureka:
  client:
    service-url:
      #注册服务端地址
      defaultZone: http://localhost:8761/eureka
spring:
  application:
    name: config
  cloud:
    config:
      server:
        git:
          #配置文件git地址
          uri: https://gitee.com/yejiaomin/config-repo
          #git用户名密码
          username: xxxx
          password: yyyyy
          #git文件保存本地地址
          basedir: D:2.workspaceconfigasedir

 

1.读取配置文件格式

/{name}-{profiles}.yml

/{label}/{name}-{profiles}.yml

name 服务名, profiles:环境,label: 分支

http://localhost:8080/release/order-dev.yml

以上是关于SpringCloud Config统一配置中心的主要内容,如果未能解决你的问题,请参考以下文章

SpringCloud分布式配置中心Config

SpringCloud微服务(06):Config组件,实现配置统一管理

SpringCloud微服务(06):Config组件,实现配置统一管理

springcloud config配置中心

springcloud-config配置中心初级篇

SpringCloud-分布式配置中心(config)