文章目录
- 零、学习目标
- 一、Spring Boot数据访问概述
- 二、Spring Boot 整合MyBatis
- (一)基础环境搭建
- 1、数据准备
- (1)创建博客数据库
- (2)创建文章表
- (3)文章表插入记录
- (4)创建评论表
- (5)评论表插入记录
- 2、创建项目,引入相应启动器
- (1)创建Spring Boot项目
- (2)创建评论实体类
- (3)创建文章实体类
- 3、编写配置文件
- (1)配置数据源
- (2)配置数据源类型
- (3)配置Druid数据源
- (二)使用注解方式整合MyBatis
- 1、创建评论映射器接口
- 2023-6-6 更新至此
- 2、测试评论映射器接口
- (1)创建测试方法testFindById()
- (2)创建测试方法testFindAll()
- (3)创建测试方法testInsertComment()
- (4)创建测试方法testUpdateComment()
- (5)创建测试方法testDeleteComment()
- (三)使用配置文件方式整合MyBatis
- 1、创建文章映射接口 - ArticleMapper
- 2、创建映射器配置文件 - ArticleMapper.xml
- 3、在全局配置文件里配置映射器配置文件路径
- 4、在测试类编写测试方法,测试文章映射器
- (1)创建测试方法testFindArticleById()
- (2)创建测试方法testUpdateArticle()
- 三、课后作业
- 1、在ArticleMapper里添加方法
- 2、在测试类编写测试方法
零、学习目标
- 了解Spring Boot数据访问概述
- 掌握使用注解的方式整合MyBatis
- 掌握使用配置文件的方式整合MyBatis
一、Spring Boot数据访问概述
- 在开发中,通常会涉及到对数据库的数据进行操作,Spring Boot在简化项目开发以及实现自动化配置的基础上,对关系型数据库和非关系型数据库的访问操作都提供了非常好的整合支持。
- Spring Boot默认采用整合
SpringData
的方式统一处理数据访问层,通过添加大量自动配置,引入各种数据访问模板xxxTemplate
以及统一的Repository
接口,从而达到简化数据访问层的操作。 - Spring Boot提供的常见数据库依赖启动器
名称 | 对应数据库 |
---|---|
spring-boot-starter-data-jpa | Spring Data JPA, Hibernate |
spring-boot-starter-data-mongodb | MongoDB, Spring Data MongoDB |
spring-boot-starter-data-neo4j | Neo4j图数据库, Spring Data Neo4j |
spring-boot-starter-data-redis | Redis |
二、Spring Boot 整合MyBatis
(一)基础环境搭建
1、数据准备
- 创建数据库、数据表并插入一定的数据
(1)创建博客数据库
- 在Navicat的查询里,通过语句创建博客数据库
blog
CREATE DATABASE blog;
- 在Navicat里打开刚才创建的博客数据库
(2)创建文章表
- 在博客数据库里创建文章表
t_article
CREATE TABLE `t_article` (
`id` int(20) NOT NULL AUTO_INCREMENT COMMENT '文章编号',
`title` varchar(200) DEFAULT NULL COMMENT '文章标题',
`content` longtext COMMENT '文章内容',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
(3)文章表插入记录
- 在文章表
t_article
里插入数据记录
INSERT INTO `t_article` VALUES ('1', 'Spring Boot基础入门', '从入门到精通讲解...');
INSERT INTO `t_article` VALUES ('2', 'Spring Cloud基础入门', '从入门到精通讲解...');
INSERT INTO `t_article` VALUES ('3', '安卓开发权威指南', '从入门到精通讲解...');
- 查看文章表内容
(4)创建评论表
- 在博客数据库里创建评论表
t_comment
CREATE TABLE `t_comment` (
`id` int(20) NOT NULL AUTO_INCREMENT COMMENT '评论编号',
`content` longtext COMMENT '评论内容',
`author` varchar(200) DEFAULT NULL COMMENT '评论作者',
`a_id` int(20) DEFAULT NULL COMMENT '关联的文章编号',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
(5)评论表插入记录
- 在评论表
t_comment
里插入数据记录
INSERT INTO `t_comment` VALUES ('1', '很全、很详细', '小明', '1');
INSERT INTO `t_comment` VALUES ('2', '赞一个', '李文', '3');
INSERT INTO `t_comment` VALUES ('3', '很详细,喜欢', '童文宇', '1');
INSERT INTO `t_comment` VALUES ('4', '很好,非常详细', '钟小凯', '2');
INSERT INTO `t_comment` VALUES ('5', '很不错', '张三丰', '2');
INSERT INTO `t_comment` VALUES ('6', '操作性强,真棒', '唐雨涵', '3');
INSERT INTO `t_comment` VALUES ('7', '内容全面,讲解清晰', '张杨', '1');
- 查看评论表内容
2、创建项目,引入相应启动器
(1)创建Spring Boot项目
-
基于
Spring Initializr
模板创建Spring Boot项目 -SpringBootMyBatisDemo
-
设置项目基本信息
-
选择Spring Boot版本,添加相关依赖
-
设置项目名称与保存位置
-
单击【Finish】按钮
-
查看pom.xml文件,再添加一个配置处理器依赖
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.12</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>net.huawei.boot</groupId>
<artifactId>springbootmybatisdemo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>SpringBootMyBatisDemo</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>11</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
- 更新Maven项目依赖
(2)创建评论实体类
- 在
net.huawei.boot
根包里创建bean
子包,在子包里创建Comment
类
package net.huawei.boot.bean;
/**
* 功能:评论实体类
* 作者:华卫
* 日期:2023年06月06日
*/
public class Comment {
private Integer id;
private String content;
private String author;
private Integer aId;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public Integer getaId() {
return aId;
}
public void setaId(Integer aId) {
this.aId = aId;
}
@Override
public String toString() {
return "Comment{" +
"id=" + id +
", content='" + content + '\'' +
", author='" + author + '\'' +
", aId=" + aId +
'}';
}
}
- 文章编号
aId
,使用了驼峰命名法,对应表中的a_id
字段 - 全局配置文件中必须配置以下语句,否则查出数据为
null
(3)创建文章实体类
- 在
net.huawei.boot.bean
包里创建Article
类
package net.huawei.boot.bean;
import java.util.List;
/**
* 功能:文章实体类
* 作者:华卫
* 日期:2023年06月06日
*/
public class Article {
private Integer id;
private String title;
private String content;
private List<Comment> comments;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public List<Comment> getComments() {
return comments;
}
public void setComments(List<Comment> comments) {
this.comments = comments;
}
@Override
public String toString() {
return "Article{" +
"id=" + id +
", title='" + title + '\'' +
", content='" + content + '\'' +
", comments=" + comments +
'}';
}
}
3、编写配置文件
- 将全局配置文件
application.properties
更名为application.yaml
(1)配置数据源
- 配置
datasource
属性
# 配置数据源
spring:
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/blog?serverTimeZone=UTC&useUnicode=true&characterEncoding=UTF-8
username: root
password: 903213
- 说明:
driver-class-name: com.mysql.jdbc.Driver
数据库驱动配置并非必须
(2)配置数据源类型
- 我们采用阿里巴巴的
Druid
数据源 - 在
pom.xml
文件里添加Druid
依赖,更新Maven项目依赖
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.2.18</version>
</dependency>
(3)配置Druid数据源
- 设置数据源
type
是Druid
数据源 - 设置
Druid
数据源的一些属性
(二)使用注解方式整合MyBatis
1、创建评论映射器接口
- 在
net.huawei.boot
根包里创建mapper
子包,在子包里创建CommentMapper
接口
package net.huawei.boot.mapper;
import net.huawei.boot.bean.Comment;
import org.apache.ibatis.annotations.*;
import java.util.List;
/**
* 功能:评论映射器接口
* 作者:华卫
* 日期:2023年06月06日
*/
@Mapper // 交给Spring容器管理
public interface CommentMapper {
@Insert("insert into t_comment values(#{id}, #{content}, #{author}, #{aId})")
int insert(Comment comment); // 插入评论记录
@Delete("delete from t_comment where id = #{id}")
int deleteById(Integer id); // 按标识符删除评论
@Update("update t_comment set content = #{content}, author = #{author} where id = #{id}")
int update(Comment comment); // 更新评论
@Select("select * from t_comment where id = #{id}")
Comment findById(Integer id); // 按标识符查询评论
@Select("select * from t_comment")
List<Comment> findAll(); // 查询全部评论
}
2023-6-6 更新至此
2、测试评论映射器接口
- 点开默认的测试类
- 注入评论映射器(如果不设置required = false,变量commentMapper会出现红色波浪线报错)
(1)创建测试方法testFindById()
-
运行测试方法,查看结果
-
要避免这个警告信息,修改一下全局属性配置文件
-
再运行测试方法,查看结果
-
测试通过,但是输出结果有个小问题,文章编号
aId
的值为null
。为什么呢?因为aId
属性对应的是评论表中的a_id
字段,需要在全局配置文件里对MyBatis进行一个转换配置:mybatis: configuration: map-underscore-to-camel-case: true
-
再运行测试方法,查看结果
-
大家可以看到,文章编号
aId
属性的值输出来了。 -
修改测试方法的代码,再进行测试
(2)创建测试方法testFindAll()
- 运行测试方法,查看结果
(3)创建测试方法testInsertComment()
-
运行测试方法,查看结果
-
在Navicat里打开评论表,看是否成功地添加了一条新记录
(4)创建测试方法testUpdateComment()
- 修改刚才插入的第8条记录
- 运行测试方法,查看结果
(5)创建测试方法testDeleteComment()
-
删除刚才插入的第8条记录
-
运行测试方法,查看结果
-
在Navicat里查看评论表t_comment
(三)使用配置文件方式整合MyBatis
1、创建文章映射接口 - ArticleMapper
package net.hw.lesson06;
import org.apache.ibatis.annotations.Mapper;
/**
* 功能:文章映射器接口
* 作者:华卫
* 日期:2020年08月11日
*/
@Mapper
public interface ArticleMapper {
Article findArticleById(Integer id);
int updateArticle(Article article);
}
2、创建映射器配置文件 - ArticleMapper.xml
- 在resources目录里创建mapper目录,在mapper目录里创建ArticleMapper.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="net.hw.lesson06.mapper.ArticleMapper">
<!--按id查询记录,文章表与评论表关联查询-->
<select id="findArticleById" resultMap="articleWithComment">
SELECT a.*, c.id c_id, c.content c_content, c.author, c.a_id
FROM t_article a, t_comment c
WHERE a.id = c.a_id AND a.id = #{id}
</select>
<!--结果集,一篇文章对应多个评论构成的集合-->
<resultMap id="articleWithComment" type="Article">
<id property="id" column="id"/>
<result property="title" column="title"/>
<result property="content" column="content"/>
<collection property="commentList" ofType="Comment">
<id property="id" column="c_id"/>
<result property="content" column="c_content"/>
<result property="author" column="author"/>
<result property="aId" column="a_id"/>
</collection>
</resultMap>
<!--更新记录-->
<update id="updateArticle" parameterType="Article">
UPDATE t_article
<set>
<if test="title != null and title != ''">
title = #{title},
</if>
<if test="content != null and content != ''">
content = #{content}
</if>
</set>
WHERE id = #{id}
</update>
</mapper>
3、在全局配置文件里配置映射器配置文件路径
4、在测试类编写测试方法,测试文章映射器
- 注入文章映射器
(1)创建测试方法testFindArticleById()
- 运行测试方法,查看结果
- 修改测试代码,再进行测试
(2)创建测试方法testUpdateArticle()
- 运行测试方法,查看结果
三、课后作业
1、在ArticleMapper里添加方法
public List<Article> findAllArticles();
public int insertArticle(Article article);
public int deleteArticle(Integer id);
2、在测试类编写测试方法
public void testFindAllArticles();
public void testInsertArticle();
public void testDeleteArticle();