gpt4 book ai didi

java - spring 配置服务器 - 用于本地 git 存储库

转载 作者:行者123 更新时间:2023-12-02 02:25:14 25 4
gpt4 key购买 nike

我正在尝试设置 Spring Cloud 配置服务器

-在我的本地创建了 git 存储库文件夹F:\git-local-repository\存储库

- 使用类路径链接源链接它-为我的服务添加属性文件

-在位置 F:\git-local-repository\repository 提交更改后

-点击网址:http://localhost:8888/limits/default

结果错误:org.springframework.cloud.config.server.environment.NoSuchLabelException:没有这样的标签:master

原因:org.eclipse.jgit.api.errors.RefNotFoundException:Ref master 无法解析

以下是我的 Spring Boot 应用程序的主类

@EnableConfigServer


@SpringBootApplication
public class SpringCloudConfigServerApplication {

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


}

}

application.properties

spring.application.name=spring-cloud-config-server

server.port=8888

spring.cloud.config.server.git.uri=file:////F:/git-local-
repository/repository

预期结果:将显示应用程序属性详细信息和其他 url

最佳答案

如果您使用本地目录进行配置。

而不是

spring.cloud.config.server.git.uri=file:////F:/git-local-repository/repository

使用

spring.cloud.config.server.native.search-locations=file:////F:/git-local-repository/repository

关于java - spring 配置服务器 - 用于本地 git 存储库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57257587/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com