
如上图所示,SpringBoot启动报错。
查了下,是因为maven里没有加web起步依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
加上之后:
在启动一下:

完美的解决了。

如上图所示,SpringBoot启动报错。
查了下,是因为maven里没有加web起步依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
加上之后:
在启动一下:

完美的解决了。

被折叠的 条评论
为什么被折叠?