1. 程式人生 > 其它 >Spring boot App啟動報錯 missing ServletWebServerFactory bean

Spring boot App啟動報錯 missing ServletWebServerFactory bean

技術標籤:Javaspring bootspringjava

將一個普通Java App應用改寫為Java Web App,添加了spring-boot-starter-parent之後,Run as Spring App一致報如下錯。

org.springframework.context.ApplicationContextException: Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactory bean.

網上找了非常多方法,大部分是在 pom.xml 的dependency處修改。直到最終才發現是因為忘了新增應用啟動配置。

即:在啟動類定義之上新增@SpringBootApplication 。

如下連結有所啟發:

https://blog.csdn.net/qq_39205129/article/details/99978516