mybatis系列(二)--mybatis的动态sql

时间:2021-04-16 05:09:43

首先看mybatis的查询语句

parameterType是传入的参数类型,当传入是基本数据类型时候:

<select id="findStudentById" parameterType="int" resultMap="studentList">
select * from t_student where id =#{_parameter}
</select>

当传入是集合时候:

java代码:

public List<Student> findStudentById(int[] i)
对应得xml:

<select id="findStudentById" parameterType="int[]" resultMap="studentList">
select * from t_student where id in
<foreach collection="array" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</select>

当传入是list的时候:

java代码:

public List<Student> findStudentById(List<Integer> i);
对应得xml:

<select id="findStudentById" parameterType="list" resultMap="studentList">
select * from t_student where id in
<span style="white-space:pre"> </span><foreach collection="list" index="index" item="item" open="(" separator="," close=")">
<span style="white-space:pre"> </span>#{item}
</foreach>
</select>

当传入是map的时候:

public List<Student> findStudentById(Map<String, List<Integer>> map);</span>
对应得xml: 

<select id="findStudentById" parameterType="map" resultMap="studentList">
select * from t_student where id in
<foreach collection="ids" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</select>

总结:

1.parameterType是入参类型包括:java的8种数据类型,数组(array),集合(list)以及Map。

   parameterType接受的如果是数组则:<foreach collection="array"

   parameterType接受的如果是集合则:<foreach collection="list"

   parameterType接受的如果是Map则:<foreach collection="ids",这里的ids指的的是你放入map里面的key

2.parameterType是入参类型是数组(array),集合(list)以及Map时,parameterType可以不写。像这样也能取到值。

<select id="findStudentById" resultMap="studentList">
select * from t_student where id in
<foreach collection="ids" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</select>


下面看动态sql常用的标签

  • if
  • where
  • choose(when,otherwise)
  • trim
  • set
  • foreach
先来看if标签的使用,他根据参数情况,动态的拼接你想要的sql非常的方便。

<select id="findStudentById" parameterType=" com.douhao.model.Student"resultType="com.douhao.model.Student">
select * from t_student where 1=1
<if test="id!= null">
and id= #{id}
</if>
<if test="name!= null">
and name= #{name}
</if>
<if test="age!= null">
and age= #{age}
</if>
</select>


where语句的作用主要是让mybaits智能的判断是输出where还是and,不用担心条件判断时第一个是and而出错,看例子。

<select id="findStudentById" parameterType=" com.douhao.model.Student" resultType="com.douhao.model.Student">
select * from t_student
<where>
<if test="id!= null">
and id= #{id}
</if>
<if test="name!= null">
and name= #{name}
</if>
<if test="age!= null">
and age= #{age}
</if>
</where>
</select>


 
choose元素的作用就相当于JAVA中的switch语句,基本上跟JSTL中的choose的作用和用法是一样的,通常都是与when和otherwise搭配的。看如下一个例子: 

<select id="findStudentById" parameterType="com.douhao.dao.StudentMapper" resultType="com.douhao.dao.StudentMapper">  
select * from t_blog where 1= 1
<choose>
<when test="id != null">
and id = #{title}
</when>
<when test="name != null">
and name = #{content}
</when>
<otherwise>
and age = "11"
</otherwise>
</choose>
</select>


trim标签:prefix:前缀覆盖并增加其内容  

suffix:后缀覆盖并增加其内容 

prefixOverrides:前缀判断的条件

suffixOverrides:后缀判断的条件

trim元素的主要功能是可以在自己包含的内容前加上某些前缀,也可以在其后加上某些后缀,与之对应的属性是prefix和suffix;可以把包含内容的首部某些内容覆盖,即忽略,也可以把尾部的某些内容覆盖,对应的属性是prefixOverrides和suffixOverrides;正因为trim有这样的功能,所以我们也可以非常简单的利用trim来代替where元素的功能,示例代码如下:

<select id="dynamicTrimTest" parameterType="com.douhao.model.Student" resultType="com.douhao.model.Student">  
select * from t_student
<trim prefix="where" prefixOverrides="and |or">
<if test="id != null">
id = #{id}
</if>
<if test="name != null">
and name = #{name}
</if>
<if test="age != null">
or age = #{age}
</if>
</trim>
</select>


set元素主要是用在更新操作的时候,它的主要功能和where元素其实是差不多的,主要是在包含的语句前输出一个set,然后如果包含的语句是以逗号结束的话将会把该逗号忽略,如果set中一个条件都不满足,即set中包含的内容为空的时候就会报错。下面是一段示例代码:

<update id="findStudentById" parameterType="com.douhao.model.Student">  
update t_student
<set>
<if test="id != null">
id = #{id},
</if>
<if test="name != null">
name = #{name},
</if>
<if test="age != null">
age = #{age}
</if>
</set>
where id = #{id}
</update>


foreach的主要用在构建in条件中,它可以在SQL语句中进行迭代一个集合。
foreach元素的属性主要有item,index,collection,open,separator,close。
item表示集合中每一个元素进行迭代时的别名。
index指定一个名字,用于表示在迭代过程中,每次迭代到的位置。
open表示该语句以什么开始。
separator表示在每次进行迭代之间以什么符号作为分隔符。
close表示以什么结束。
在使用foreach的时候最关键的也是最容易出错的就是collection属性,该属性是必须指定的,但是在不同情况下,该属性的值是不一样的,主要有一下3种情况:
  1. 如果传入的是单参数且参数类型是一个List的时候,collection属性值为list
  2. 如果传入的是单参数且参数类型是一个array数组的时候,collection的属性值为array
  3. 如果传入的参数是多个的时候,我们就需要把它们封装成一个Map了,当然单参数也可以封装成map,实际上如果你在传入参数的时候,在MyBatis里面也是会把它封装成一个Map的,map的key就是参数名,所以这个时候collection属性值就是传入的List或array对象在自己封装的map里面的key
以上三种情况具体的用法,开始代码已给出。