【Java】初学SpringCloud报错Unable to start embedded container

package com.example.demoeurekaserver;

import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;

import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@EnableEurekaServer

@SpringBootApplication

public class EurekaserverApplication {

public static void main(String[] args) {

SpringApplication.run(EurekaserverApplication.class, args);

}

}

【Java】初学SpringCloud报错Unable to start embedded container

回答

从日志上看应该是由于类加载问题导致filter没有成功启动。
日志不是很全,看不到是哪个类丢失。

【Java】初学SpringCloud报错Unable to start embedded container

是不是没有添加 tomcat 包

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-tomcat</artifactId>

</dependency>

以上是 【Java】初学SpringCloud报错Unable to start embedded container 的全部内容, 来源链接: utcz.com/a/88696.html

回到顶部