本地文件的Spring Cloud配置服务器git

时间:2019-06-12 05:56:30

标签: spring git server cloud config

我想使用Spring Cloud配置服务器git从本地文件中获取数据。

我已尝试使用Yaml配置以下的配置,但无法正常工作。

服务器:   端口:8888

春天:   云:     配置:       服务器:         git:           uri:file:/// C:/ spring-boot-ws / demo-springcloud-m2-configserver-git / pluralsight-spring-cloudconfig-wa-tolls-master /

我的文件夹结构就像

C:> spring-boot-ws> demo-springcloud-m2-configserver-git> pluralsight-spring-cloudconfig-wa-tolls-master> station1> s1rates.properties

1 个答案:

答案 0 :(得分:0)

顾名思义,使用git意味着您必须设置包含配置而不是本地文件的存储库的uri。如果要使用本地文件,则应按以下方式配置服务器:

spring:
   profiles:
     active: native
   cloud:
      config:
        server:
          native:
            searchLocations: file:///...