Spring Cloud Config 构建 一 个分布式配置中心 propertySources为空原因

访问http://localhost:7001/didispace/dev/master/
出现了propertySources为空

{"name":"didispace","profiles":["dev"],"label":"master","version":"94cc858c00277b495b16dae450ba76f044fc0fa3","propertySources":[]}

原因1:名称
原因2:路径

正常情况下的配置例子:

{"name":"didispace","profiles":["prod"],"label":"master","version":"589a7e8e89d691776c3ea1971d8ae6e5462819af","propertySources":[{"name":"https://gitee.com/XXXX/didispace/config/didispace-prod.properties","source":{"from":"git-prod-1.0"}},{"name":"https://gitee.com/XXXX/didispace/config/didispace.properties","source":{"from":"git-dev-1.0"}}]}

git仓库:应用名要与配置前缀名一样
Spring Cloud Config 构建 一 个分布式配置中心 propertySources为空原因_第1张图片
Spring Cloud Config 构建 一 个分布式配置中心 propertySources为空原因_第2张图片
在这里插入图片描述

你可能感兴趣的:(springcloud)