使用idea新建spring boot项目

1、点击idea的菜单中 File -> New -> Project, 然后选择 Spring Initializr, 选择idk版本, 然后点击 Next

使用idea新建spring boot项目

image.png

2、填写项目相关信息,然后点击Next

使用idea新建spring boot项目

image.png

3、选择WEB和SQL,勾选MySQL和MyBatis,点Next

使用idea新建spring boot项目

image.png

使用idea新建spring boot项目

image.png

4、填写项目名称和保存路径, 最后点击 FInish

使用idea新建spring boot项目

image.png

5、项目建好后,idea会自动安装和更新maven依赖的jar包,这个过程需要一定的时间
6、配置数据源
由于引入了数据库的相关依赖, 没有配置数据源的话spring boot 将启动失败, 我们先来在配置文件中配置下数据源. 打开 application.yml, 添加以下内容

spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3314/test?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
spring.datasource.username=test
spring.datasource.password=123456

7、启动项目点idea菜单栏的运行图标即可

使用idea新建spring boot项目

上一篇:可视化讲解:什么是数飞机问题?


下一篇:2022-2-26 剑指offer day16