一、创建项目
1.File->new->project;
2.选择“Spring Initializr”,点击next;(选择电脑中已安装的jdk配置)
3.完善信息
4.Web下勾选Spring Web Start/Web/Spring Web);Template Englines勾选Thymeleaf;SQL勾选:MySQL Driver,JDBC API 和 MyBatis Framework三项;点击next;
二、与数据库连接(MYSQL)
①登陆SQLyog并点击连接
②创建数据库,例如rg18,并创建对应的表
③在IDEA中连接数据库(mysql):view->tools windows->data base
④在右侧弹出的栏中,点+
选择data source->mysql
⑤填上对应的数据库名(例如,我创建的数据库为rg18,故此处database填的也是rg18),用户名与密码,并连接。
三、application.yml文件讲解
文件目录如下:
application.yml代码:
tip:"#"为详解注释
#配置端口号和数据库连接
server:
#运行的端口号,进入网页时地址就是http://localhost:8080
port: 8080
generalUsername: Erya
#连接数据库
mydb:
username: root
password: 123456
url: mysql
#配置springmvc的视图
spring:
mvc:
view:
prefix: /
suffix: .jsp
datasource: #g告诉springboot去哪里链接数据库,以及用什么样的方式链接数据库
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/rg18?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8
username: root
password: 123456
#使用druid数据库连接池连接数据库
type: com.alibaba.druid.pool.DruidDataSource
mybatis:
#告诉mybatis,mapper文件的映射路径
mapper-locations: classpath:mappers/*.xml
type-aliases-package: com.cy.springboot29.entity
configuration:
map-underscore-to-camel-case: true
四、Add run configurations
运行springboot项目,相应地,需要添加对应的运行配置。
以下文件是项目的启动类,在运行配置中将会选定。
其内容会引用controller包中跳转页面的文件。①add configurations
②点+号,spring boot
③按图中步骤即可。
tip:如果项目中包含多个子项目,如:
可以分别创建两个springboot,选择运行。
五、SpringBoot项目源码(功能含数据查询、数据添加与更新):
项目预览图: