主要内容:
一、动态参数
二、自定义结果映射
三、SQL片段的使用
四、动态SQL
五、MyBatis级联操作
六、延迟加载
一、动态参数
动态参数的两种方式
方式1:预编译的方式(#{参数名)
优点:可以防止SQL注入。
缺点:无法实现动态表的支持。
原理:将SQL中参数转为占位符,在后面进行赋值
方式2:直接赋值的方式(${参数名})
优点:可以实现动态表的支持。
缺点:无法放置SQL注入。
原理:直接在SQL中替换,将值在SQL后面拼接
例如:select * from dept_${year};动态表名
二、自定义结果映射ResultMap
主要解决SQL查询的字段与对应实体类字段名称不同的情况,字段名字不同,反射无法找到对应的字段。
resultMap标签属性:
type:自定义规则的java类型
id:唯一标识方便引用
resultMap中子标签id或result的属性:
column:数据库列名
property:对应的javabean属性
<resultMap id="myStudent" type="com.lrh.mybatis.bean.Student">
<id column="id" property="id"/>
<result column="name" property="name"/>
<result column="age" property="age"/>
</resultMap>
<select id="getStudentById" resultMap="myStudent">
SELECT * FROM student WHERE id = #{id}
</select>
三、SQL片段的使用
SQL片段主要是将重复SQL部分提取出来,使用的时候使用include引用即可,最终达到sql重用的目的。
<sql id="query_where">
<if test="name!=null and name!='' ">
NAME = #{name})
</if>
<if test="hobby!= null and hobby!= '' ">
AND hobby = #{hobby}
</if>
</sql>
<select id="getStudentListWhere" parameterType="Object" resultMap="resultMap">
SELECT * from student
<where>
<include refid="query_where"/>
</where>
</select>
四、动态SQL
1. 什么是动态SQL
根据用户提供的参数,动态决定查询语句依赖的查询条件或SQL语句的内容
2. 动态SQL依赖的标签
if 标签(条件判断)
通过判断参数值来决定是否使用某段SQL语句段。
choose-when-otherwise标签(多分支选择)
从多个选项中选择一个,按顺序判断 when 中的条件出否成立,如果有一个成立,则 choose 结束,没有,则执行 otherwise 中的 sql语句。
属性说明:
test:条件
<select id="getInfoChoose" parameterType="Student" resultMap="resultMap">
SELECT * FROM student WHERE 1=1
<choose>
<when test="name!=null and student!='' ">
AND name LIKE CONCAT(CONCAT('%', #{student}),'%')
</when>
<when test="hobby!= null and hobby!= '' ">
AND hobby = #{hobby}
</when>
<otherwise>
AND AGE = 15
</otherwise>
</choose>
</select>
foreach标签
主要用于构建 in 条件和批量操作,是在 sql 中对集合进行迭代。
属性说明:
collection:属性的值有三个,分别是 list、array、map 三种,分别对应的参数类型为:List、数组、map 集合。
item :迭代的元素。
index :迭代的下标。
open :前缀。
close :后缀。
separator :分隔符。
<select id="selectInfoList" resultMap="resultMap">
select name,hobby from student where id in
<foreach item="item" index="index" collection="list" open="(" separator="," close=")">
#{item}
</foreach>
</select>
where 标签
格式化SQL,防止因为if标签条件导致SQL出现错误(WHERE后面跟着AND或者OR)
1、错误SQL
如果if条件第一个条件不满足的话,WHERE后面就跟着AND,出现语法错误。
<select id="getStudentListWhere" parameterType="Object" resultMap="resultMap">
SELECT * from student WHERE
<if test="name!=null and name!='' ">
NAME = #{name})
</if>
<if test="hobby!= null and hobby!= '' ">
AND hobby = #{hobby}
</if>
</select>
2、正确的处理SQL
<select id="getStudentListWhere" parameterType="Object" resultMap="resultMap">
SELECT * from student
<where>
<if test="name!=null and name!='' ">
NAME = #{name})
</if>
<if test="hobby!= null and hobby!= '' ">
AND hobby = #{hobby}
</if>
</where>
</select>
set 标签
格式化SQL,防止因为if标签条件导致SQL出现错误(SQL拼接以逗号结尾)
1、错误SQL
如果if条件最后一个条件不满足的话,SET的最后以逗号结尾,出现语法错误。
<update id="updateStudent" parameterType="Object">
UPDATE student SET
<if test="name!=null and name!='' ">
NAME = #{name},
</if>
<if test="hobby!=null and hobby!='' ">
HOBBY = #{hobby}
</if>
WHERE ID = #{id};
</update>
2、正确的处理SQL
<update id="updateStudent" parameterType="Object">
UPDATE student
<set>
<if test="name!=null and name!='' ">
NAME = #{name},
</if>
<if test="hobby!=null and hobby!='' ">
HOBBY = #{hobby}
</if>
</set>
WHERE ID = #{id};
</update>
trim 标签
格式化SQL,防止因为if标签条件导致SQL出现错误(SQL拼接过滤开始或结束的指定符号)
trim属性:
prefix:在trim标签内sql语句加上前缀
suffix:在trim标签内sql语句加上后缀
prefixOverrides:指定去除多余的前缀内容。
suffixOverrides:指定去除多余的后缀内容。
<update id="updateByPrimaryKey" parameterType="Object">
update student set
<trim suffixOverrides=",">
<if test="name != null">
NAME=#{name},
</if>
</trim>
where id=#{id}
</update>
<select id="selectByNameOrHobby" resultMap="BaseResultMap">
select * from student
<trim prefix="WHERE" prefixOverrides="AND | OR">
<if test="name != null and name.length()>0">
AND name=#{name}
</if>
</trim>
</select>
五、MyBatis级联操作
1. 级联操作分类
级联查询、级联删除、级联更新、级联添加
注意:级联删除、级联更新、级联添加现在已经很少使用了,因为缩小异常的连锁反应。
2. 级联查询的分类
一对多查询、多对一查询、多对多查询
3. 一对多查询
3.1 单步查询
利用collection标签实现一对多单步关联查询。
Country类
public class Country {
Long id;
String name;
Date lastUpdate;
List<City> cityList;
/**
* 以下部分为setter和getter, 省略
*/
}
City类
public class City {
Long id;
String name;
Long countryId;
Date lastUpdate;
/**
* 以下部分为setter和getter, 省略
*/
}
CountryMapper.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.lrh.mybatis.mapper.CountryMapper">
<resultMap id="countryPlusResultMap" type="com.lrh.mybatis.bean.Country">
<id column="country_id" property="id"/>
<result column="country" property="name"/>
<result column="last_update" property="lastUpdate"/>
<collection property="cityList" ofType="com.lrh.mybatis.bean.City">
<id column="city_id" property="id"/>
<result column="city" property="name"/>
<result column="city_country_id" property="countryId"/>
<result column="city_last_update" property="lastUpdate"/>
</collection>
</resultMap>
<select id="selectCountryPlusById" resultMap="countryPlusResultMap">
select country.country_id as country_id,
country,
country.last_update as last_update,
city_id,
city,
city.country_id as city_country_id,
city.last_update as city_last_update
from country left join city on country.country_id = city.country_id
where country.country_id=#{id}
</select>
</mapper>
3.2 分步查询
方式1:利用collection标签进行分步查询
Country类
public class Country {
Long id;
String name;
Date lastUpdate;
List<City> cityList;
/**
* 以下部分为setter和getter, 省略
*/
}
City类
public class City {
Long id;
String name;
Long countryId;
Date lastUpdate;
/**
* 以下部分为setter和getter, 省略
*/
}
CountryMapper.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.lrh.mybatis.mapper.CountryMapper">
<resultMap id="countryPlusResultMapStep" type="com.lrh.mybatis.bean.Country">
<id column="country_id" property="id"/>
<result column="country" property="name"/>
<result column="last_update" property="lastUpdate"/>
<collection property="cityList"
select="com.lrh.mybatis.mapper.CountryMapper.selectCityByCountryId" column="country_id">
</collection>
</resultMap>
<select id="selectCountryPlusByIdStep" resultMap="countryPlusResultMapStep">
select *
from country
where country_id=#{id}
</select>
<select id="selectCityByCountryId" resultType="com.lrh.mybatis.bean.City">
select * from city where country_id = #{id}
</select>
</mapper>
4. 多对一查询
City类
public class City {
Long id;
String name;
Long countryId;
Date lastUpdate;
/**
* 以下部分为setter和getter, 省略
*/
}
Region类
public class Region {
Long id;
String name;
Long cityId;
Date lastUpdate;
City city;
/**
* 以下部分为setter和getter, 省略
*/
}
RegionMapper.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.lrh.mybatis.mapper.RegionMapper">
<resultMap id="regionMap" type="com.lrh.mybatis.bean.Region">
<id column="region_id" property="id"/>
<result column="region" property="name"/>
<result column="last_update" property="lastUpdate"/>
<association property="city" javaType="com.lrh.mybatis.bean.City">
<id column="city_id" property="id"/>
<result column="city" property="name"/>
<result column="last_update" property="lastUpdate"/>
</association>
</resultMap>
<select id="getRegionList" resultMap="regionMap">
SELECT * FROM region r left join city ci on r.city_id = ci.city_id
</select>
</mapper>
5. 多对多查询
Country类
public class Country {
Long id;
String name;
Date lastUpdate;
List<City> cityList;
/**
* 以下部分为setter和getter, 省略
*/
}
City类
public class City {
Long id;
String name;
Long countryId;
Date lastUpdate;
List<Region> regionList;
/**
* 以下部分为setter和getter, 省略
*/
}
Region类
public class Region {
Long id;
String name;
Long cityId;
Date lastUpdate;
/**
* 以下部分为setter和getter, 省略
*/
}
CountryMapper.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.lrh.mybatis.mapper.CountryMapper">
<resultMap id="regionResultMap" type="com.lrh.mybatis.bean.Country">
<id column="country_id" property="id"/>
<result column="country" property="name"/>
<result column="last_update" property="lastUpdate"/>
<collection property="cityList" ofType="com.lrh.mybatis.bean.City">
<id column="city_id" property="id"/>
<result column="city" property="name"/>
<result column="city_country_id" property="countryId"/>
<result column="city_last_update" property="lastUpdate"/>
<collection property="regionList" ofType="com.lrh.mybatis.bean.Region">
<id column="region_id" property="id"/>
<result column="region" property="name"/>
<result column="city_region_id" property="cityId"/>
<result column="city_last_update" property="lastUpdate"/>
</collection>
</collection>
</resultMap>
<select id="selectPositionStudentByPosId" resultMap="regionResultMap" parameterType="Integer">
select
o.country_id as country_id,o.country,o.last_update as last_update,
c.city_id,c.city,c.country_id as city_country_id,c.last_update as city_last_update,
r.region_id,r.region,r.last_update as region_last_update
from country o
left join city c on o.country_id = c.country_id
left join region r on c.city_id = r.city_id
where o.country_id=#{id}
</select>
</mapper>
六、延迟加载
1. association和collection
association一对一,延迟加载
标签属性解析:
property是account对象的user属性
javaType是user属性的类型
column是account表的外键字段,会作为延迟加载参数自动传入
select是延迟加载查询配置
fetchType="lazy" 配置开启延迟加载
方式1:内联方式:
<mapper namespace="com.sunwii.mybatis.mapper.PersonMapper">
<resultMap type="PersonResult" id="PersonMap">
<id property="id" column="id" />
<result property="name" column="name" />
<!-- 方式1:使用内联方式直接列出。 -->
<association property="idCard" column="idcard_id" javaType="IdCard">
<id column="cid" property="id" />
<result column="number" property="number" />
<result column="expired_time" property="expiredTime" />
</association>
</resultMap>
<select id="selectById" parameterType="Integer" resultMap="PersonMap">
select p.id id, p.name name,c.id cid,c.number
number,c.expired_time expired_time from t_person p
inner join t_idcard
c on p.idcard_id=c.id and p.id=#{id}
</select>
</mapper>
方式2:使用resultMap引用
<mapper namespace="com.sunwii.mybatis.mapper.PersonMapper">
<resultMap type="PersonResult" id="PersonMap">
<id property="id" column="id" />
<result property="name" column="name" />
<!-- 方式三:使用resultMap引用 -->
<association property="idCard" column="cid"
resultMap="com.sunwii.mybatis.mapper.IdCardMapper.IdCardMap" />
</resultMap>
<select id="selectById" parameterType="Integer"
resultMap="PersonMap">
select p.id id, p.name name,c.id cid,c.number
number,c.expired_time expired_time from t_person p
inner join t_idcard
c on p.idcard_id=c.id and p.id=#{id}
</select>
</mapper>
<mapper namespace="com.sunwii.mybatis.mapper.IdCardMapper">
<resultMap type="IdCard" id="IdCardMap">
<id property="id" column="cid" />
<result property="number" column="number" />
<result property="expiredTime" column="expired_time" />
</resultMap>
<select id="selectById" parameterType="Integer"
resultMap="IdCardMap">
select id as cid ,number,expired_time from t_idcard where id=#{id}
</select>
</mapper>
方式3:使用select引用,可以设置延迟加载方式
<mapper namespace="com.sunwii.mybatis.mapper.PersonMapper">
<resultMap type="PersonResult" id="PersonMap">
<id property="id" column="id" />
<result property="name" column="name" />
<!-- 方式四:使用select引用,可以设置延迟加载方式 -->
<association property="idCard" column="idcard_id" javaType="IdCard" select="com.sunwii.mybatis.mapper.IdCardMapper.selectById" fetchType="lazy"/>
</resultMap>
<select id="selectById" parameterType="Integer" resultMap="PersonMap">
select id, name, idcard_id from t_person p where p.id=#{id}
</select>
</mapper>
collection一对多,延迟加载
配置属性解析:
property是accounts集合属性,
ofType是集合中元素的类型
column是用户的主键,会作为select对应的方法的参数id
select 延迟加载配置
fetchType="lazy" 开启延迟加载
<resultMap id="userResultMap" type="user">
<id property="id" column="id"></id>
<result property="username" column="username"></result>
<result property="birthday" column="birthday"></result>
<result property="sex" column="sex"></result>
<result property="address" column="address"></result>
<collection property="accounts" ofType="account" column="id" select="com.sunny.dao.IAccountDao.findAccountsByUserId" fetchType="lazy"></collection>
</resultMap>
2. 延迟加载
延迟加载的理解
延迟加载也是懒加载,就是先加载主信息,再加载从信息。
优点:提高数据库性能,减少服务器压力(原为多表查询,改为单表查询)。
例如:商品表和订单表,是一对多的关系。当查询商品时,不需要使用到订单信息时,订单信息则在使用的时候再进行加载。
执行流程如下:
先执行:select * from goods where id=#{id},获取商品信息。
如果使用到goods.getOrderList.size()时,再执行select * from order where goods_id=#{id} ,获取订单列表信息。
注意:必须要有两个statement,联合查询无法进行延迟加载。
3. 延迟加载开启配置
<settings>
<setting name="lazyLoadingEnabled" value="true"/><!-- 启用延迟加载-->
<setting name="aggressiveLazyLoading" value="false"/><!-- 按需加载: value为true时为侵入式延迟加载,false为深入式延迟加载-->
</settings>
4. 延迟加载的策略
4.1. 直接加载
执行主加载SQL后,马上执行关联SQL的查询(主从一起执行)。
4.2. 侵入式延迟加载
执行主加载查询,不会马上执行从加载。访问主加载对象详情时,马上执行从加载(主加载信息详情时执行从加载)。
4.3. 深度式延迟加载
执行主加载查询,不会马上执行从加载。访问主加载对象的详情时,也不会执行从加载。当真正访问关联对象的详情时,才会执行从加载。
5. 延迟加载实现案例
映射文件:GoodsMapper.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.lrh.mapper.GoodsMapper">
<!-- 分类信息查询 -->
<select id="getGoodsInfo" resultMap="orderMap">
select * from goods where id=#{id}
</select>
<resultMap id="orderMap" type="com.lrh.bean.Goods">
<id column="id" property="Id"></id>
<result column="name" property="Name"></result>
<result column="remark" property="Remark"></result>
<!-- 一个商品对应多个订单,此处使用collection -->
<collection property="ordertList" ofType="com.lrh.bean.Order" column="id" select="getOrderList"></collection>
</resultMap>
<!-- 嵌套查询返回订单信息,延迟加载将要执行的sql -->
<select id="getOrderList" resultType="com.lrh.bean.Order">
select * from order where goods_id=#{id}
</select>
</mapper>
测试用例
@Test
public void testoneToManyTestCollectionSelect() {
GoodsMapper mapper = session.getMapper(GoodsMapper.class);
Goods goods = mapper.getGoodsInfo(1);
System.out.println(goods.getName());
//此时才加载执行订单信息列表的SQL
if (goods.getOrderList().size() > 0) {
for (Order order : goods.getOrderList()) {
System.out.println(order.getId());
}
}
// 关闭会话
session.close();
}