Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactory bean

ゝ一纸荒年。 2021-10-30 02:48 413阅读 0赞

在Spring Boot项目中,出现这个错误有两种情况:

一,在main方法所在的类忘记添加@SpringBootApplication

二,缺少依赖,添加即可

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-web</artifactId>
  4. </dependency>

转载于:https://www.cnblogs.com/wgslucky/p/11255388.html

发表评论

表情:
评论列表 (有 0 条评论,413人围观)

还没有评论,来说两句吧...

相关阅读