运行Springboot时出现了错误...
发现自己忘了导入web启动器
在pom.xml导入此依赖包
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.3.5.RELEASE</version>
</dependency>
然后再重新run,就没问题了