本文主要是介绍springcloud config报错NoSuchLabelException: No such label: main,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
目录
- 一、问题描述
- 二、解决方法
一、问题描述
Spring Cloud Config Server 编译报错:NoSuchLabelException: No such label: main
org.springframework.cloud.config.server.environment.NoSuchLabelException: No such label: mainat org.springframework.cloud.config.server.environment.JGitEnvironmentRepository.refresh(JGitEnvironmentRepository.java:314) ~[spring-cloud-config-server-3.1.0.jar:3.1.0]at ...
Caused by: org.eclipse.jgit.api.errors.RefNotFoundException: Ref main cannot be resolved
二、解决方法
application.yml 文件中添加配置:
spring:cloud:config:server:git:default-label: master
这篇关于springcloud config报错NoSuchLabelException: No such label: main的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!