spring boot 启动报错Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContaine
spring boot 启动时报错
检查pom文件配置
<!-- spring boot 主框架 -->
<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></exclusions>内容删除