我正在尝试设置 spring 云配置服务器
-在我的本地 F:\git-local-repository\repository 上创建了 git 存储库文件夹
- 使用类路径链接源链接它 - 为我的服务添加了属性文件
-在位置 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 无法解析
以下是我的主要春季启动应用程序类
@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