我如何引用resources
目录(或相对于我的源文件的目录)作为配置服务器的本地git uri(在Windows上)?
我尝过file:///resources
和file:///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
答案 0 :(得分:1)
如果您想将文件系统用作后端,只需尝试以下设置:
spring.profiles.active=native
spring.cloud.config.server.native.searchLocations: file:///full/path/to/resources
答案 1 :(得分:1)
我很尴尬地写这个,但是intellij不会清理这个版本。我完成了gradle任务,一切顺利。