Spring 云配置未检测到 git uri

Spring cloud config doesn't detect git uri

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

我试过 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

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

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

另见 this documentation

我不好意思写这个,但 intellij 不会清理构建。我 运行 gradle 任务,一切都成功了。