新建Spring项目忘记添加spring-boot-starter-web依赖导致项目无法正常启动 添加 <dependency> <groupId>org.springframework.boot</groupId> <artifactId> spring-boot-starter-web</artifactId> <version>2.5.12</version> </dependency> 到pom文件中即可正常启动。