新建的Springboot项目无法启动,也不报错?这是怎么回事?
答案是缺少“spring-boot-starter-web”依赖
如果你是使用的maven,那么在pom.xml中添加以下依赖,注意version要和你新建Springboot的版本一致:
<!-- 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.2.2.RELEASE</version>
</dependency>
如果你使用的是gradle,那么在build.gradle中添加以下依赖,同样注意version要和新建的Springboot版本一致:
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '2.2.2.RELEASE'
博主用的gradle,附上截图:
加入依赖后,重新编译,启动项目,成功!