猿问

初学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@SpringBootApplicationpublic class EurekaserverApplication {

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


慕容708150
浏览 866回答 1
1回答

梵蒂冈之花

从日志上看应该是由于类加载问题导致filter没有成功启动。日志不是很全,看不到是哪个类丢失。
随时随地看视频慕课网APP

相关分类

Java
我要回答