Spring cloud config没有检测到git uri

时间:2016-12-15 10:13:51

标签: spring spring-cloud-config

我如何引用resources目录(或相对于我的源文件的目录)作为配置服务器的本地git uri(在Windows上)?

我尝过file:///resourcesfile:///full/path/to/resources,似乎都失败了。

根据要求,这里有一些代码:

ConfigServiceApplication.java

@EnableConfigServer
@SpringBootApplication
public class ConfigServiceApplication {

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

application.properties

spring.cloud.config.server.git.uri=file:///full/path/to/resources
spring.application.name=config-service
server.port=8888

2 个答案:

答案 0 :(得分:1)

如果您想将文件系统用作后端,只需尝试以下设置:

spring.profiles.active=native
spring.cloud.config.server.native.searchLocations: file:///full/path/to/resources

另见this documentation

答案 1 :(得分:1)

我很尴尬地写这个,但是intellij不会清理这个版本。我完成了gradle任务,一切顺利。