Spring 云配置服务器:Mercurial?
Spring Cloud Config Server: Mercurial?
据我所知,无法使用 Mercurial 设置 Spring Cloud Config 服务器。
也许有人遇到过类似的请求并且知道解决方法或解决方案?
谢谢!
事实证明解决方案非常简单。在 Spring Cloud Config Server 应用程序的 application.properties
中定义:
# tells spring to run without git
spring.profiles.active=native
# where the .properties or .yml files will be located
spring.cloud.config.server.native.search-locations=file:///{user.home}/config-repo
来源:https://cloud.spring.io/spring-cloud-config/spring-cloud-config.html -> 文件系统后端。
据我所知,无法使用 Mercurial 设置 Spring Cloud Config 服务器。 也许有人遇到过类似的请求并且知道解决方法或解决方案?
谢谢!
事实证明解决方案非常简单。在 Spring Cloud Config Server 应用程序的 application.properties
中定义:
# tells spring to run without git
spring.profiles.active=native
# where the .properties or .yml files will be located
spring.cloud.config.server.native.search-locations=file:///{user.home}/config-repo
来源:https://cloud.spring.io/spring-cloud-config/spring-cloud-config.html -> 文件系统后端。