springboot报错Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContainerFac

Posted 学习笔记

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot报错Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContainerFac相关的知识,希望对你有一定的参考价值。

springboot项目在启动时需要把servlet容器编译进去,这时候如果你的maven依赖里面没有配置jetty或者tomcat相关依赖就会报错。

解决方法:

jetty添加

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-jetty</artifactId>
    <scope>provided</scope>
</dependency>

tomcat添加:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-tomcat</artifactId>
    <scope>provided</scope>
</dependency>

 

以上是关于springboot报错Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContainerFac的主要内容,如果未能解决你的问题,请参考以下文章

Springboot 启动报错,Unable to read meta-data for class

springboot整合gson打开swagger报错:Unable to render this definition。The provided definition does not specif

Springboot项目编译正常启动Unable to start embedded Tomcat报错

已解决:SpringBoot启动报错:Unable to start web server; nested exception is org.springframework.boot.web

解决springboot启动失败问题:Unable to start embedded container;

解决 Springboot Unable to build Hibernate SessionFactory @Column命名不起作用