首先看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
<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>
<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>
- 如果传入的是单参数且参数类型是一个List的时候,collection属性值为list
- 如果传入的是单参数且参数类型是一个array数组的时候,collection的属性值为array
- 如果传入的参数是多个的时候,我们就需要把它们封装成一个Map了,当然单参数也可以封装成map,实际上如果你在传入参数的时候,在MyBatis里面也是会把它封装成一个Map的,map的key就是参数名,所以这个时候collection属性值就是传入的List或array对象在自己封装的map里面的key