一、创建新springboot工程
1.emmm不多说
2.选择初始化spring
[外链图片转存失败,源站可能有防盗链机
3.diy时间
4.根据需要选择依赖
5.可以finish了!
6.先删除没啥大用的东西(至少我还不知道没有他们有啥问题,目前没碰到过)
没选中的一定不要删除(后悔药Ctrl+z)
7.改名字!(可有可无,但是内容格式需要和配置文件类型一致)
二、配置mysql
1.配置数据源
在application.yml中配置数据源
spring:
#配置数据源
datasource:
username: root
data-password:
url: jdbc:mysql://localhost:3306/dbName?userSSL=true&serverTimezone=Asia/Shanghai&characterEncoding=utf-8
driver-class-name: com.mysql.cj.jdbc.Driver
2.到此可以在test中测试一下(试错)
三、建议:idea连接数据库
1.手把手!(选择需要的)
2.配置数据库
点他!(点完可能需要安装Driver根据提示安装即可。)
四、配置mybatis
1.导入mybatis依赖!!!
<!-- mybatis-spring-boot-starter -->
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.4</version>
</dependency>
- 在yml文件中配置映射文件的位置以及别名(可选)
如果不配置需要将映射xml文件与java文件放到一起
mybatis:
#配置mybatis映射位置
mapper-locations: classpath:mybatis/mapper/*.xml
#配置数据传输值的别名
type-aliases-package: com.ljq.pojo
3.新建映射文件
Xxxmapper.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ljq.mapper.XxxMapper">
<select id="selectAll" resultType="Xxx">
select * from xxx
</select>
</mapper>