SpringCloud报错:Caused by: org.springframework.context.ApplicationContextException: Unable to start Em

Posted 乐之者

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringCloud报错:Caused by: org.springframework.context.ApplicationContextException: Unable to start Em相关的知识,希望对你有一定的参考价值。

今天启动用eureka的服务消费者时,一直出现问题。

SpringCloud报错:

Caused by: org.springframework.context.ApplicationContextException: Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContainerFactory bean.

解决方案:

网上的解决方案大多如下:

1.在main()方法的启动类的上方添加注解 @SpringBootApplication

2.可能是pom.xml中缺少依赖包

   <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
   </dependency>

这些并没有解决我的问题,检查了几个小时后,发现是我的 .class 文件名称写错了。这个错误太低级了。。

将.class名称改为与类名一致就可以了。

@SpringBootApplication
@EnableDiscoveryClient
public class EurekaConsumerApplication {

    public static void main(String[] args) {
        new SpringApplicationBuilder(EurekaConsumerApplication.class).web(true).run(args);
    }
}

 

以上是关于SpringCloud报错:Caused by: org.springframework.context.ApplicationContextException: Unable to start Em的主要内容,如果未能解决你的问题,请参考以下文章

elaseticsearchelaseticsearch启动报错Caused by: org.elasticsearch.transport.BindTransportException: Fai(代

idea连接spark集群报错解析:Caused by: java.lang.ClassCastException

解决sqoop导入报错:Caused by: java.sql.SQLException: Protocol violation

JDK运行报错:Caused[0] by NoSuchMethodError: java.nio.IntBuffer.rewind()Ljava

JDK运行报错:Caused[0] by NoSuchMethodError: java.nio.IntBuffer.rewind()Ljava

关于oozie在发邮件的报错Caused by: javax.mail.AuthenticationFailedException