【已解决】Springboot 启动时报错:Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactory bean

  • 作者: 凯哥Java(公众号:凯哥Java)
  • 工作小总结
  • 时间:2022-03-27 15:29
  • 4346人已阅读
简介 Springboot 启动时报错:Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactory bean

🔔🔔🔔好消息!好消息!🔔🔔🔔

有需要的朋友👉:联系凯哥 微信号 kaigejava2022

org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is org.springframework.context.ApplicationContextException: Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactory bean

情况一:当前类名与启动的class对象名称不一致

17f9e3c2142685096da20de45de21344.png

修改一致即可。

情况二:在启动类上,没有加载:

@EnableAutoConfiguration

如果使用了@SpringBootApplication这个这个注解的话,就不会出现这个问题。

如果没有使用这个注解,就要加上。凯哥就没有使用导致的

f1f6e3402d481a0e0de1670e9b654fab.png

TopTop