当在springboot启动项目时报告此错误:
仔细看,错误的原因是缺乏ServletWebServerFactory的bean。
既然是跟Servlet相关的,很可能是在web层面有问题。
这很可能是因为缺少一个spring-boot-starter-web依赖:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
再加上,再次运行OK!