IDEA手动快速搭建springboot项目

时间:2022-06-20 00:49:21

spring boot就是整合了很多优秀的框架,不用我们自己手动的去写一堆xml配置然后进行配置。

接下来将不但有创建spring boot项目还写出一个查询试试

第一步:创建 Module 选择Spring initializr创建

IDEA手动快速搭建springboot项目

第二步:在Type选择Gradle Project

IDEA手动快速搭建springboot项目

第三步:勾选

IDEA手动快速搭建springboot项目

IDEA手动快速搭建springboot项目

IDEA手动快速搭建springboot项目

IDEA手动快速搭建springboot项目

选完就Next

第四步:名字

IDEA手动快速搭建springboot项目

第五步:添加Gradle包

IDEA手动快速搭建springboot项目

注意:

IDEA手动快速搭建springboot项目

第六步:建完后在build里添加jar包依赖

打开build把不需要的spring-cloud依赖删除:

IDEA手动快速搭建springboot项目

加入我们自己要用的依赖:

IDEA手动快速搭建springboot项目

注意:导入

IDEA手动快速搭建springboot项目

这里是根据自己的需求来添加依赖

第七步:在application.propertiest中配置

IDEA手动快速搭建springboot项目

 

这里我连接的是mysql

第八步:创建web

IDEA手动快速搭建springboot项目

注意在build中添加:

IDEA手动快速搭建springboot项目

不然无法创建jsp页面

第九步:Controller输出页面

IDEA手动快速搭建springboot项目

第十步:运行

IDEA手动快速搭建springboot项目

成功!