MyBatis 本是 Apache 的一个开源项目 iBatis, 2010 年这个项目由 apache software
foundation 迁移到了 google code ,并且改名为 MyBatis 。 2013 年 11 月迁移到 Github。
MyBatis 是一款优秀的 持久层 框架,用于 简化 JDBC 开发。官方文档
MyBatis 主要是用于简化 JDBC 开发,那么 JDBC 主要有哪些缺点呢?
那 MyBatis 又是如何简化 JDBC 开发的呢?
查询 user 表中所有数据
示例代码
create database mybatis;
use mybatis;
drop table if exists tb_user;
create table tb_user(
id int primary key auto_increment,
username varchar(20),
password varchar(20),
gender char(1),
addr varchar(30)
);
INSERT INTO tb_user VALUES (1, 'zhangsan', '123', '男', '北京');
INSERT INTO tb_user VALUES (2, '李四', '234', '女', '天津');
INSERT INTO tb_user VALUES (3, '王五', '11', '男', '西安');
tb_user 表内容如下
如果使用 Maven 来构建项目,则需将下面的依赖代码置于 pom.xml 文件中
<dependencies>
<!--MyBatis的依赖-->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.13</version>
</dependency>
<!-- mysql 驱动 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.33</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<!-- 添加slf4j日志api -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.5</version>
</dependency>
<!-- 添加logback-classic依赖 -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.4.7</version>
</dependency>
<!-- 添加logback-core依赖 -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.4.7</version>
</dependency>
</dependencies>
另外,logback除了以上三个配置信息之外,还需要一个配置文件
logback.xml
在resources
文件夹下新建配置文件 mybatis-config.xml
DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"https://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<typeAliases>
<package name="com.huwei.pojo"/>
typeAliases>
<environments default="development">
<environment id="development">
<transactionManager type="JDBC"/>
<dataSource type="POOLED">
<property name="driver" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql:///mybatis?useSSL=false"/>
<property name="username" value="root"/>
<property name="password" value="123123"/>
dataSource>
environment>
environments>
<mappers>
<mapper resource="UserMapper.xml"/>
mappers>
configuration>
注意,需要在下面配置 sql 映射文件
MyBatis 核心配置文件的顶层结构如下:
注意,在配置各个标签的时候,需要遵守前后顺序规则
在resources
文件夹下新建配置文件 XxxMapper.xml
,这里数据表为用户表,则取名UserMapper.xml
DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="user">
<select id="selectAll" resultType="user">
select * from tb_user;
select>
mapper>
定义 POJO 类 User 类
package com.huwei.pojo;
public class User {
private Integer id;
private String username;
private String password;
private String gender;
private String addr;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getGender() {
return gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public String getAddr() {
return addr;
}
public void setAddr(String addr) {
this.addr = addr;
}
@Override
public String toString() {
return "User{" +
"id=" + id +
", username='" + username + '\'' +
", password='" + password + '\'' +
", gender='" + gender + '\'' +
", addr='" + addr + '\'' +
'}';
}
}
编写测试类文件 MyBatisDemo.java
package com.huwei;
import com.huwei.pojo.User;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import java.io.IOException;
import java.io.InputStream;
import java.util.List;
public class MyBatisDemo {
public static void main(String[] args) throws IOException {
// 1. 加载核心配置文件,获取 SqlSessionFactory 对象
String resource = "mybatis-config.xml"; // 该核心配置文件就在resource根目录下,直接写文件名就行
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
// 2. 获取 SqlSession 对象,用它来执行 SQL 语句
SqlSession sqlSession = sqlSessionFactory.openSession();
// 3. 执行sql语句(传入sql语句的唯一标识)
List<User> users = sqlSession.selectList("user.selectAll");
System.out.println(users);
// 4. 释放资源
sqlSession.close();
}
}
解决 SQL 映射文件的警告提示
- 产生原因:IDEA和数据库没有建立连接,不识别表信息
- 解决方式:在IDEA中配置MySQL数据库连接
在第2小节 MyBatis 快速入门中,其实依然存在硬编码问题
而使用 Mapper 代理开发可以
使用 Mapper 代理方式完成入门案例
示例代码:
在 resource
文件夹下创建包(要和 Mapper 接口 所在的包名一致),注意,这里要使用/
代代替.
,创建完成后会变成 .
,然后将 UserMapper.xml
拖入该包中
由于此步骤改变了UserMapper.xml
的位置,我们还需要修改一下 mybatis-config.xml
文件
注意:如果 Mapper 接口名称和 SQL 映射文件名称相同,并在同一目录下,则可以使用包扫描的方式简化 SQL 映射文件的加载
另外,我在使用 Maven编译时遇到了这个报错 Maven问题:【不支持源选项5。请使用7或更高版本。】
package com.huwei.mapper;
import com.huwei.pojo.User;
import java.util.List;
public interface UserMapper {
List<User> selectAll();
}
public class MyBatisDemo {
public static void main(String[] args) throws IOException {
// 1. 加载核心配置文件,获取 SqlSessionFactory 对象
String resource = "mybatis-config.xml"; // 该核心配置文件就在resource根目录下,直接写文件名就行
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
// 2. 获取 SqlSession 对象,用它来执行 SQL 语句
SqlSession sqlSession = sqlSessionFactory.openSession();
// // 3. 执行sql语句(传入sql语句的唯一标识)
// List users = sqlSession.selectList("user.selectAll");
// 3. 获取 UserMapper 接口的代理对象
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
List<User> users = mapper.selectAll();
System.out.println(users);
// 4. 释放资源
sqlSession.close();
}
}
如下图所示产品原型,里面包含了品牌数据的
查询
、按条件查询
、添加
、删除
、批量删除
、修改
等功能,而这些功能其实就是对数据库表中的数据进行CRUD
操作。接下来我们就使用 Mybatis 完成品牌数据的增删改查操作。
总的来说,MyBatis 完成操作需要三步:编写接口方法 —> 编写 SQL —> 执行方法。
tb_brand
和数据准备-- 删除tb_brand表
drop table if exists tb_brand;
-- 创建tb_brand表
create table tb_brand
(
-- id 主键
id int primary key auto_increment,
-- 品牌名称
brand_name varchar(20),
-- 企业名称
company_name varchar(20),
-- 排序字段
ordered int,
-- 描述信息
description varchar(100),
-- 状态:0:禁用 1:启用
status int
);
-- 添加数据
insert into tb_brand (brand_name, company_name, ordered, description, status)
values ('三只松鼠', '三只松鼠股份有限公司', 5, '好吃不上火', 0),
('华为', '华为技术有限公司', 100, '华为致力于把数字世界带入每个人、每个家庭、每个组织,构建万物互联的智能世界', 1),
('小米', '小米科技有限公司', 50, 'are you ok', 1);
创建好的tb_brand
表
com.huwei.pojo
包下创建 Brand 实体类package com.huwei.pojo;
public class Brand {
// id 主键
private Integer id;
// 品牌名称
private String brandName;
// 企业名称
private String companyName;
// 排序字段
private Integer ordered;
// 描述信息
private String description;
// 状态:0:禁用 1:启用
private Integer status;
public Brand() {
}
public Brand(Integer id, String brandName, String companyName, Integer ordered, String description, Integer status) {
this.id = id;
this.brandName = brandName;
this.companyName = companyName;
this.ordered = ordered;
this.description = description;
this.status = status;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getBrandName() {
return brandName;
}
public void setBrandName(String brandName) {
this.brandName = brandName;
}
public String getCompanyName() {
return companyName;
}
public void setCompanyName(String companyName) {
this.companyName = companyName;
}
public Integer getOrdered() {
return ordered;
}
public void setOrdered(Integer ordered) {
this.ordered = ordered;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
@Override
public String toString() {
return "Brand{" +
"id=" + id +
", brandName='" + brandName + '\'' +
", companyName='" + companyName + '\'' +
", ordered=" + ordered +
", description='" + description + '\'' +
", status=" + status +
'}';
}
}
test/java
目录下创建包及测试用例。项目结构如下:
MybatisX 是一款基于 IDEA 的快速开发插件,为效率而生。其主要功能:
安装方式
file
,选择 settings
,就能看到如下图所示界面注意:安装完毕后需要重启IDEA
插件效果
红色头绳的表示映射配置文件,蓝色头绳的表示 mapper 接口。在 mapper 接口点击红色头绳的小鸟图标会自动跳转到对应的映射配置文件,在映射配置文件中点击蓝色头绳的小鸟图标会自动跳转到对应的 mapper 接口。
也可以在 mapper 接口中定义方法,自动生成映射配置文件中的 statement
,如图所示:
接口方法: Mapper 接口
List
在 com.huwei.mapper
包写创建名为 BrandMapper
的接口。并在该接口中定义 List
方法
public interface BrandMapper {
List<Brand> selectAll();
}
在 reources
下创建 com/huwei/mapper
目录结构,并在该目录下创建名为 BrandMapper.xml
的映射配置文件
DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.huwei.mapper.BrandMapper">
<select id="selectAll" resultType="brand">
select *
from tb_brand;
select>
mapper>
在 MybatisTest
类中编写测试查询所有的方法
@Test
public void testSelectAll() throws IOException {
// 1. 加载核心配置文件,获取 SqlSessionFactory 对象
String resource = "mybatis-config.xml"; // 该核心配置文件就在resource根目录下,直接写文件名就行
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
// 2. 获取 SqlSession 对象,用它来执行 SQL 语句
SqlSession sqlSession = sqlSessionFactory.openSession();
// 3. 获取 UserMapper 接口的代理对象
BrandMapper mapper = sqlSession.getMapper(BrandMapper.class);
// 4. 执行方法
List<Brand> brands = mapper.selectAll();
System.out.println(brands);
// 5. 释放资源
sqlSession.close();
}
注意:现在我们感觉测试这部分代码写起来特别麻烦,我们可以先忍忍。以后我们只会写上面的第3步的代码,其他的都不需要我们来完成。
执行测试方法结果如下:
从上面结果我们看到了问题,有些数据封装成功了,而有些数据并没有封装成功。为什么这样呢?
从上面结果可以看到 brandName
和 companyName
这两个属性的数据没有封装成功,查询 实体类 和 表中的字段 发现,在实体类中属性名是 brandName
和 companyName
,而表中的字段名为 brand_name
和 company_name
,如下图所示 。
那么我们只需要保持这两部分的名称一致这个问题就迎刃而解。
这个问题可以通过两种方式进行解决:
BrandMapper.xml
DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.huwei.mapper.BrandMapper">
<resultMap id="brandResultMap" type="brand">
<result column="brand_name" property="brandName"/>
<result column="company_name" property="companyName"/>
resultMap>
<select id="selectAll" resultMap="brandResultMap">
select *
from tb_brand;
select>
mapper>
有些数据的属性比较多,在页面表格中无法全部实现,而只会显示部分,而其他属性数据的查询可以通过 查看详情
来进行查询,如下图所示。
Mapper接口
- 参数:id
- 查看详情就是查询某一行数据,所以需要根据 id 进行查询。而id以后是由页面传递过来。
- 结果:Brand
- 根据id查询出来的数据只要一条,而将一条数据封装成一个 Brand 对象即可
在 BrandMapper
接口中定义根据id查询数据的方法
/**
* 查看详情:根据Id查询
*/
Brand selectById(int id);
在 BrandMapper.xml
映射配置文件中编写 statement
,使用 resultMap
而不是使用 resultType
<select id="selectById" resultMap="brandResultMap">
select *
from tb_brand where id = #{id};
select>
注意:
在 test/java
下的 com.huwei.mapper
包下的 MybatisTest类中
定义测试方法
@Test
public void testSelectById() throws IOException {
// 接收参数
int id=1;
// 1. 加载核心配置文件,获取 SqlSessionFactory 对象
String resource = "mybatis-config.xml"; // 该核心配置文件就在resource根目录下,直接写文件名就行
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
// 2. 获取 SqlSession 对象,用它来执行 SQL 语句
SqlSession sqlSession = sqlSessionFactory.openSession();
// 3. 获取 UserMapper 接口的代理对象
BrandMapper mapper = sqlSession.getMapper(BrandMapper.class);
// 4. 执行方法
Brand brand = mapper.selectById(id);
System.out.println(brand);
// 5. 释放资源
sqlSession.close();
}
执行测试方法结果如下:
我们经常会遇到如上图所示的多条件查询,将多条件查询的结果展示在下方的数据列表中。
条件字段 企业名称
和 品牌名称
需要进行模糊查询,所以条件应该是:
在 BrandMapper
接口中定义多条件查询的方法
而该功能有三个参数,我们就需要考虑定义接口时,参数应该如何定义。Mybatis针对多参数有多种实现:
@Param("参数名称")
标记每一个参数,在映射配置文件中就需要使用 #{参数名称}
进行占位List<Brand> selectByCondition(@Param("status") int status, @Param("companyName") String companyName,@Param("brandName") String brandName);
#{内容}
时,里面的内容必须和实体类属性名保持一致。List<Brand> selectByCondition(Brand brand);
#{内容}
时,里面的内容必须和map集合中键的名称一致。List<Brand> selectByCondition(Map map);
在 BrandMapper.xml
映射配置文件中编写 statement
,使用 resultMap
而不是使用 resultType
<select id="selectByCondition" resultMap="brandResultMap">
select *
from tb_brand
where status = #{status}
and company_name like #{companyName}
and brand_name like #{brandName}
select>
注意:
like
在没有使用通配符时等同于=
操作符
在 test/java
下的 com.huwei.mapper
包下的 MybatisTest类中
定义测试方法
@Test
public void testSelectByCondition() throws IOException {
//接收参数
int status = 1;
String companyName = "华为";
String brandName = "华为";
// 处理参数
companyName = "%" + companyName + "%";
brandName = "%" + brandName + "%";
//1. 获取SqlSessionFactory
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
//2. 获取SqlSession对象
SqlSession sqlSession = sqlSessionFactory.openSession();
//3. 获取Mapper接口的代理对象
BrandMapper brandMapper = sqlSession.getMapper(BrandMapper.class);
//4. 执行方法
//方式一 :接口方法参数使用 @Param 方式调用的方法
//List brands = brandMapper.selectByCondition(status, companyName, brandName);
//方式二 :接口方法参数是 实体类对象 方式调用的方法
//封装对象
/* Brand brand = new Brand();
brand.setStatus(status);
brand.setCompanyName(companyName);
brand.setBrandName(brandName);*/
//List brands = brandMapper.selectByCondition(brand);
//方式三 :接口方法参数是 map集合对象 方式调用的方法
Map map = new HashMap();
map.put("status" , status);
map.put("companyName", companyName);
map.put("brandName" , brandName);
List<Brand> brands = brandMapper.selectByCondition(map);
System.out.println(brands);
//5. 释放资源
sqlSession.close();
}
上述功能实现存在很大的问题。因为用户在输入条件时,很可能不会所有的条件都填写
例如,我们只输入 brandName
,就会出现如下情况
SQL 语句会随着用户输入或外部条件的变化而变化,我们称为 动态SQL。
而 Mybatis 对动态SQL有很强大的支撑:
- if
- choose (when, otherwise)
- trim (where, set)
- foreach
在 BrandMapper.xml
映射配置文件修改 SQL 语句
<select id="selectByCondition" resultMap="brandResultMap">
select *
from tb_brand
where
<if test="status != null">
status = #{status}
if>
<if test="companyName != null and companyName != '' ">
and company_name like #{companyName}
if>
<if test="brandName != null and brandName != '' ">
and brand_name like #{brandName}
if>
select>
如上的这种SQL语句就会根据传递的参数值进行动态的拼接。如果此时 status
和companyName
有值那么就会值拼接这两个条件。
执行结果如下:
但是它也存在问题,如果此时给的参数值是
Map map = new HashMap();
// map.put("status" , status);
map.put("companyName", companyName);
map.put("brandName" , brandName);
拼接的SQL语句就变成了
select * from tb_brand where and company_name like ? and brand_name like ?
而上面的语句中 where
关键后直接跟 and
关键字,这就是一条错误的SQL语句。
可以通过恒等式解决
<select id="selectByCondition" resultMap="brandResultMap">
select *
from tb_brand
where 1=1
<if test="status != null">
and status = #{status}
if>
<if test="companyName != null and companyName != '' ">
and company_name like #{companyName}
if>
<if test="brandName != null and brandName != '' ">
and brand_name like #{brandName}
if>
select>
这个问题,我们也可以通过 where
标签解决
where
标签的作用:
where
关键字and
where
关键字<select id="selectByCondition" resultMap="brandResultMap">
select *
from tb_brand
<where>
<if test="status != null">
status = #{status}
if>
<if test="companyName != null and companyName != '' ">
and company_name like #{companyName}
if>
<if test="brandName != null and brandName != '' ">
and brand_name like #{brandName}
if>
where>
select>
如上图所示,在查询时只能选择 品牌名称
、当前状态
、企业名称
这三个条件中的一个,但是用户到底选择哪儿一个,我们并不能确定。这种就属于单个条件的动态SQL语句。
这种需求需要使用到 choose(when,otherwise)标签
实现, 而 choose
标签类似于Java 中的 switch
语句。
在 BrandMapper
接口中定义单条件查询的方法
在 BrandMapper.xml
映射配置文件中编写 statement
,使用 resultMap
而不是使用 resultType
<select id="selectByConditionSingle" resultMap="brandResultMap">
select *
from tb_brand
<where>
<choose>
<when test="status != null">
status = #{status}
when>
<when test="companyName != null and companyName != '' ">
company_name like #{companyName}
when>
<when test="brandName != null and brandName != ''">
brand_name like #{brandName}
when>
choose>
where>
select>
在 test/java
下的 com.huwei.mapper
包下的 MybatisTest类中
定义测试方法
@Test
public void testSelectByConditionSingle() throws IOException {
//接收参数
int status = 1;
String companyName = "华为";
String brandName = "华为";
// 处理参数
companyName = "%" + companyName + "%";
brandName = "%" + brandName + "%";
//封装对象
Brand brand = new Brand();
//brand.setStatus(status);
brand.setCompanyName(companyName);
//brand.setBrandName(brandName);
//1. 获取SqlSessionFactory
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
//2. 获取SqlSession对象
SqlSession sqlSession = sqlSessionFactory.openSession();
//3. 获取Mapper接口的代理对象
BrandMapper brandMapper = sqlSession.getMapper(BrandMapper.class);
//4. 执行方法
List<Brand> brands = brandMapper.selectByConditionSingle(brand);
System.out.println(brands);
//5. 释放资源
sqlSession.close();
}
在 BrandMapper
接口中定义添加方法
void add(Brand brand);
在 BrandMapper.xml
映射配置文件中编写添加数据的 statement
<insert id="add">
insert into tb_brand (brand_name, company_name, ordered, description, status)
values (#{brandName}, #{companyName}, #{ordered}, #{description}, #{status});
insert>
在 test/java
下的 com.huwei.mapper
包下的 MybatisTest类中
定义测试方法
@Test
public void testAdd() throws IOException {
//接收参数
int status = 1;
String companyName = "波导手机";
String brandName = "波导";
String description = "手机中的战斗机";
int ordered = 100;
//封装对象
Brand brand = new Brand();
brand.setStatus(status);
brand.setCompanyName(companyName);
brand.setBrandName(brandName);
brand.setDescription(description);
brand.setOrdered(ordered);
//1. 获取SqlSessionFactory
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
//2. 获取SqlSession对象
SqlSession sqlSession = sqlSessionFactory.openSession();
//SqlSession sqlSession = sqlSessionFactory.openSession(true); //设置自动提交事务,这种情况不需要手动提交事务了
//3. 获取Mapper接口的代理对象
BrandMapper brandMapper = sqlSession.getMapper(BrandMapper.class);
//4. 执行方法
brandMapper.add(brand);
//可以发现我们获取不到添加数据的id
//Integer id =brand.getId();
//System.out.println(id); // null
//提交事务
sqlSession.commit();
//5. 释放资源
sqlSession.close();
}
在数据添加成功后,有时候需要获取插入数据库数据的主键(主键是自增长),即 主键返回。但是像上述代码那样直接打印主键,是获取不到主键值的。
我们将上面添加品牌数据的案例中 BrandMapper.xml
映射配置文件里 statement
进行修改,如下
<insert id="add" useGeneratedKeys="true" keyProperty="id">
insert into tb_brand (brand_name, company_name, ordered, description, status)
values (#{brandName}, #{companyName}, #{ordered}, #{description}, #{status});
insert>
在 insert 标签上添加如下属性:
useGeneratedKeys
:是够获取自动增长的主键值。true表示获取keyProperty
:指定将获取到的主键值封装到实体类的哪儿个属性里
在 BrandMapper
接口中定义修改方法
int update(Brand brand); // 返回影响的数据行数
上述方法参数 Brand 就是封装了需要修改的数据,而id肯定是有数据的,这也是和添加方法的区别
在 BrandMapper.xml
映射配置文件中编写修改数据的 statement
<update id="update">
update tb_brand
set brand_name = #{brandName},
company_name = #{companyName},
ordered = #{ordered},
description = #{description},
status = #{status}
where id = #{id};
update>
在 test/java
下的 com.huwei.mapper
包下的 MybatisTest类中
定义测试方法
@Test
public void testUpdate() throws IOException {
//接收参数
int status = 1;
String companyName = "vivo";
String brandName = "vivo手机";
String description = "真好使";
int ordered = 200;
int id =5;
//封装对象
Brand brand = new Brand();
brand.setStatus(status);
brand.setCompanyName(companyName);
brand.setBrandName(brandName);
brand.setDescription(description);
brand.setOrdered(ordered);
brand.setId(id);
//1. 获取SqlSessionFactory
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
//2. 获取SqlSession对象
SqlSession sqlSession = sqlSessionFactory.openSession();
//3. 获取Mapper接口的代理对象
BrandMapper brandMapper = sqlSession.getMapper(BrandMapper.class);
//4. 执行方法
int cnt = brandMapper.update(brand);
System.out.println(cnt);
//提交事务
sqlSession.commit();
//5. 释放资源
sqlSession.close();
}
比如我们只修改 status
的值,修改 MybatisTest类中
的测试方法
//封装对象
Brand brand = new Brand();
brand.setStatus(status);
//brand.setCompanyName(companyName);
//brand.setBrandName(brandName);
//brand.setDescription(description);
//brand.setOrdered(ordered);
brand.setId(id);
运行结果如下:
在 BrandMapper.xml
映射配置文件中做如下修改
<update id="update">
update tb_brand
<set>
<if test="brandName != null and brandName != ''">
brand_name = #{brandName},
if>
<if test="companyName != null and companyName != ''">
company_name = #{companyName},
if>
<if test="ordered != null">
ordered = #{ordered},
if>
<if test="description != null and description != ''">
description = #{description},
if>
<if test="status != null">
status = #{status}
if>
set>
where id = #{id};
update>
执行测试方法结果如下:
从结果中SQL语句可以看出,只修改了 status
字段值,因为我们给的数据中只给Brand实体对象的 status
属性设置值了。这就是 set
标签的作用。
set
标签可以用于动态包含需要更新的列,忽略其它不更新的列。
在 BrandMapper
接口中定义根据id删除方法
void deleteById(int id);
在 BrandMapper.xml
映射配置文件中编写删除一行数据的 statement
<delete id="deleteById">
delete from tb_brand where id = #{id};
delete>
在 test/java
下的 com.huwei.mapper
包下的 MybatisTest类中
定义测试方法
@Test
public void testDeleteById() throws IOException {
//接收参数
int id = 6;
//1. 获取SqlSessionFactory
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
//2. 获取SqlSession对象
SqlSession sqlSession = sqlSessionFactory.openSession();
//SqlSession sqlSession = sqlSessionFactory.openSession(true);
//3. 获取Mapper接口的代理对象
BrandMapper brandMapper = sqlSession.getMapper(BrandMapper.class);
//4. 执行方法
brandMapper.deleteById(id);
//提交事务
sqlSession.commit();
//5. 释放资源
sqlSession.close();
}
在 BrandMapper
接口中定义删除多行数据的方法。
void deleteByIds(int[] ids);
// void deleteByIds(@Param(ids) int[] ids); // 可以通过 @Param 改变对应map里key的名称为ids
参数是一个数组,数组中存储的是多条数据的 id
在 BrandMapper.xml
映射配置文件中编写删除多条数据的 statement
。
编写SQL时需要遍历数组来拼接SQL语句。Mybatis 提供了 foreach
标签供我们使用
,用来迭代任何可迭代的对象(如数组,集合)。
array = 数组
@Param
注解改变map集合的默认key的名称foreach
标签不会错误地添加多余的分隔符。也就是最后一次迭代不会加分隔符。<delete id="deleteByIds">
delete from tb_brand where id
in
<foreach collection="array" item="id" separator="," open="(" close=")">
#{id}
foreach>
;
delete>
假如数组中的 id 数据是 {1,2,3}
,那么拼接后的 sql 语句就是:
delete from tb_brand where id in (1,2,3);
在 test/java
下的 com.huwei.mapper
包下的 MybatisTest类中
定义测试方法
@Test
public void testDeleteByIds() throws IOException {
//接收参数
int[] ids = {5,7,8};
//1. 获取SqlSessionFactory
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
//2. 获取SqlSession对象
SqlSession sqlSession = sqlSessionFactory.openSession();
//SqlSession sqlSession = sqlSessionFactory.openSession(true);
//3. 获取Mapper接口的代理对象
BrandMapper brandMapper = sqlSession.getMapper(BrandMapper.class);
//4. 执行方法
brandMapper.deleteByIds(ids);
//提交事务
sqlSession.commit();
//5. 释放资源
sqlSession.close();
}
Mybatis 接口方法中可以接收各种各样的参数,如下:
如下面的代码,就是接收两个参数,而接收多个参数需要使用 @Param
注解,那么为什么要加该注解呢?这个问题要弄明白就必须来研究Mybatis 底层对于这些参数是如何处理的。
User select(@Param("username") String username,@Param("password") String password);
<select id="select" resultType="user">
select *
from tb_user
where
username=#{username}
and password=#{password}
select>
我们在接口方法中定义多个参数,Mybatis 会将这些参数封装成 Map 集合对象,值就是参数值,而键在没有使用 @Param
注解时有以下命名规则:
arg
开头 :第一个参数就叫 arg0
,第二个参数就叫 arg1
,以此类推。如:
map.put("arg0",参数值1);
map.put("arg1",参数值2);
param
开头 : 第一个参数就叫 param1
,第二个参数就叫 param2
,依次类推。如:
map.put("param1",参数值1);
map.put("param2",参数值2);
示例代码
在 UserMapper
接口中定义如下方法
User select(String username,String password);
在 UserMapper.xml
映射配置文件中定义SQL
<select id="select" resultType="user">
select *
from tb_user
where
username=#{arg0}
and password=#{arg1}
select>
或者
<select id="select" resultType="user">
select *
from tb_user
where
username=#{param1}
and password=#{param2}
select>
运行代码结果如下
在映射配合文件的SQL语句中使用用 arg
开头的和 param
书写,代码的可读性会变的特别差,此时可以使用 @Param
注解。
以后接口参数是多个时,在每个参数上都使用 @Param
注解。这样代码的可读性更高。
属性名
和 参数占位符名称
一致map集合的键名
和 参数占位符名称
一致map.put("arg0",collection集合);
map.put("collection",collection集合);
map.put("arg0",list集合);
map.put("collection",list集合);
map.put("list",list集合);
map.put("arg0",数组);
map.put("array",数组);
参数占位符名称
叫什么都可以。尽量做到见名知意使用注解开发会比配置文件开发更加方便。如下就是使用注解进行开发
@Select(value = "select * from tb_user where id = #{id}")
public User select(int id);
注解是用来替换映射配置文件方式配置的,所以使用了注解,就不需要再映射配置文件中书写对应的
statement
Mybatis 针对 CURD 操作都提供了对应的注解,已经做到见名知意。如下:
@Select
@Insert
@Update
@Delete
使用示例
将之前案例中 UserMapper.xml
中的 根据id查询数据 的 statement
注释掉
在 UserMapper
接口的 selectById
方法上添加注解
运行测试程序也能正常查询到数据
如何选择?
- 注解完成简单功能,配置文件完成复杂功能