Bootstrap

idea启动Spring项目自动退出

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

;