SpringBoot
Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContainerFactory bean.
解决:
添加springboot-web的注解
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
原文地址:https://www.cnblogs.com/cmyxn/p/8150401.html
时间: 2024-10-26 20:17:25