【FAQ】Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServlet

原因:

   

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



去掉exclusions即可

原文地址:https://www.cnblogs.com/lodor/p/7772666.html