Spring boot启动报错 spring boot启动报错Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactory bean Spring Boot项目中,出现这个错误有两种情况: 一,在main方法所在的类忘记添加@SpringBootApplication 二,缺少依赖,添加即可 1 2 3 4 org.springframework.boot spring-boot-starter-web 起因:代码生成服务,启动一直报错。 解决:使用第二种方案,增加依赖解决。