Spring cloud配置组织文件夹中的文件

时间:2016-05-16 10:13:09

标签: java spring git spring-cloud-config

我试图在我的Git仓库中的文件夹中组织一组配置文件。 我在Spring Cloud Docs中读到了这可以这样做:

  

HTTP服务具有以下形式的资源:

/{application}/{profile}[/{label}] 

/{application}-{profile}.yml

/{label}/{application}-{profile}.yml

/{application}-{profile}.properties

/{label}/{application}-{profile}.properties

所以我按照第一个模式创建了我的配置结构:

app1/uat/application.yml

但是Config服务找不到它。它并没有真正说明配置文件文件夹中的文件应该是什么样子,而且我看到的是第2和第4个模式的示例。

第一种模式真的有效吗?任何人都可以举个例子吗?

1 个答案:

答案 0 :(得分:15)

解决了,只需添加:

spring:
  cloud:
    config:
      server:
        git:
          uri: https://github.com/your-repo
          searchPaths: '{application}/{profile}'

这将成功