idea使用spring Initializr 快速搭建springboot项目遇到的坑

前言:

以前用习惯了sts,今天尝试使用IDEA 搭建springboot项目工程,却遇到了个小坑。不知道你们是否遇到过,分享如下:
首先我的maven使用的是3.5.3
首先创建springboot:
在这里插入图片描述
使用的是默认spring官网的镜像。这里改动不大。
idea使用spring Initializr 快速搭建springboot项目遇到的坑_第1张图片
选了个web。
idea使用spring Initializr 快速搭建springboot项目遇到的坑_第2张图片
项目创建成功
idea使用spring Initializr 快速搭建springboot项目遇到的坑_第3张图片
在启动类右键,没有run方法
idea使用spring Initializr 快速搭建springboot项目遇到的坑_第4张图片
在pom.xml上右键,将其添加为maven项目
idea使用spring Initializr 快速搭建springboot项目遇到的坑_第5张图片
然后发现Test模块报错。
idea使用spring Initializr 快速搭建springboot项目遇到的坑_第6张图片
查看pom.xml文件,发现2.3.5Release版本变红,怀疑是版本不对应问题。
idea使用spring Initializr 快速搭建springboot项目遇到的坑_第7张图片
创建时发现没有2.3.4
idea使用spring Initializr 快速搭建springboot项目遇到的坑_第8张图片
于是试了一下阿里云的镜像:
在这里插入图片描述
重新建个项目
idea使用spring Initializr 快速搭建springboot项目遇到的坑_第9张图片
成功运行!
觉得时版本不对应问题,应该是SpringInitializar创建的Springboot版本太高。
于是我直接尝试了在第一个创建的项目中,将之前的“2.3.5"改成了:
idea使用spring Initializr 快速搭建springboot项目遇到的坑_第10张图片
发现也能成功运行。
啧啧啧。。。。。。。

你可能感兴趣的:(CGB2007,java,maven,spring,spring,boot,idea)