当前位置: 首页 > 知识库问答 >
问题:

Spring云配置服务器无法启动

南门宇
2023-03-14

我正在关注应用程序中的条目。

spring.application.name=spring-cloud-config-server
server.port=8888
#spring.cloud.config.server.git.uri:file:///C:/software/codebase/microservices/git-localconfig-repo
spring.cloud.config.server.git.uri:https://github.com/XYZ/limits-service
spring.cloud.config.server.git.uri.username=test
spring.cloud.config.server.git.uri.password=test

我有下面的spring云服务器应用程序代码。

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;

    @EnableConfigServer
    @SpringBootApplication
    @EnableAutoConfiguration
    public class SpringConfigServerApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(SpringConfigServerApplication.class, args);
        }
    
    }

我收到以下错误。

启动ApplicationContext时出错。要显示条件报告,请在启用“调试”的情况下重新运行应用程序。2021 02月24日01:39:52.356错误20804---[restartedMain]o.s.b.d.LoggingFailureAnalysisReporter:

应用程序无法启动

描述:

配置服务器配置无效。

操作:

如果您使用的是git配置文件,则需要在配置中设置Git URI。如果您使用的是本机配置文件并且spring.cloud.config.server.bootstrap=true,则需要使用复合配置。

共有1个答案

越飞鸾
2023-03-14

在这一行中应该是等于:

spring.cloud.config.server.git.uri=https://github.com/XYZ/limits-service

而不是

spring.cloud.config.server.git.uri:https://github.com/XYZ/limits-service
 类似资料:
  • 当我试图启动SpringBoot主应用程序时,出现以下异常。为什么我会得到这个特例。 异常: Spring boot主java类

  • 在这里,我使用rancher和docker compose来初始化spring cloud config客户端和服务器,但当spring cloud config server未就绪时,客户端启动失败,需要在服务器就绪时重新启动。我想问,当服务器准备就绪时,是否有任何机制可以让SpringCloudConfig客户端重新加载或重新启动?

  • 我正在使用Spring Cloud Config服务器,能够检测来自git存储库的更改并将其传递给配置客户机。 有两种方法,我已经实现了: null 所以两者都工作得很好,那么使用Spring Cloud Bus有什么好处吗?或者在生产环境中,不使用Spring Cloud Bus会有什么问题吗?因为将需要额外的工作来设置RabbitMQ集群(HA)作为生产中的Spring云总线。 谢谢,大卫

  • 我正在使用Spring Cloud Config Server和一个简单的Spring Boot项目。所以我有一个Spring Cloud Config Service服务和另一个连接到Spring Cloud Config Service以获取数据库凭据和其他属性等一些属性的简单服务。如果我在本地测试它一切正常,但如果我尝试将这2个服务作为docker容器启动,它就不起作用了。Spring Cl

  • 我有一个短期任务,客户端到spring云配置。(依赖于spring cloud starter配置或spring cloud配置客户端)。 正如我提到的,这是一个短暂的任务,它启动、从服务器加载配置、进行一些处理并关闭。 问题是spring-cloud d-config-Client启动Web服务器(tomcat),这是冗余的-我不想在我的客户端应用程序/任务上启动Web服务器。 我知道这个Web

  • 我的Spring云配置服务器在尝试使用http://localhost:8080/application/default访问属性文件内容时抛出以下错误 我的申请。配置服务器中的属性如下所示 <代码>Spring。云配置。服务器吉特。uri=/Users/joe/MyProgs/Java/spring ws/config,我甚至尝试了这个spring。云配置。服务器吉特。uri=${HOME}/My