一.Mybatis
1.Hibernate全表映射,而Mybatis半自动映射且可配置动态SQL
2.Mapper 是一个接口,而没有任何实现类,它的作用是发送SQL,然后返回我们需要的结果,或者执行SQL从而修改数据库的数据。
3.Mybatis别名(typeAliases)不区分大小写;
4.typeHandler自定义类型转换器;
二.映射器
1.首先定义映射器接口(方法调用的地方),其次给出XML文件(SQL语句书写的地方),最后引入映射器,引入映射器的方法有如下几种,假设roleMapper.xml
在mapper
这个包下,接口类为RoleMapper
同样接口类也在mapper
这个包下:
1)用文件路径引入映射器,
<mappers>
<mapper resource="mapper/roleMapper.xml"/>
</mappers>
2)用包名引入映射器,
<mappers>
<mapper resource="mapper/>
</mappers>
3)用类注册器引入映射器,
<mappers>
<mapper resource="mapper/RoleMapper"/>
</mappers>
4)用别的xml配置文件引入映射器,
<mappers>
<mapper url="file:///mapper/roleMapper">
</mappers>
2.在映射器中可以定义的元素名称如下:
select中的元素resultType 和resultMap不能同时使用;
3.自动映射 autoMappingBehavior
这个参数,当它不设置为NONE时,Mybatis会提供自动映射功能,只要返回的SQL列明和JavaBean的属性一致,Mybatis就会帮助我们回填这些字段而无需任何配置。自动映射可以在配置文件中的setting元素中配置 autoMappingBehavior属性来设置其策略:
1)NONE,取消自动映射;
2)PARTIAL,只会自动映射,没有定义嵌套结果集映射的结果集(没设置该属性时这个属性为默认值);
3)FULL,会自动映射任意复杂的结果集(无论是否嵌套)。
4.sql元素
sql元素的主要作用是避免多次查询的时候重复写字段名,通过设置上图所示代码段<sql></sql>来定义查询的字段,其中id属性是为了在select语句中引用该元素。<include/>标签引用sql元素,refid属性的值对应要引用的sql元素的id名。
5.resultMap
resultMap元素中的id元素是表示哪个列是主键。
6.级联
级联中存在三种对应关系:一对一、一对多和多对多的关系。
1)association一对一级联:
<resultMap id="" type="">
....
<association property="" colum="" select="">
....
</resultMap>
注:级联即在经过一次select语句后返回结果后再调用一次resultMap中相应的select语句,其中association属性中的property为当前类的某个属性值 , colum为直指定传递给select语句的参数,select中对应的为另一个select的路径与id,若调用的为当前Mapper下的select则直接值为id,若为另一个Mapper的则要给出路径与id。
2)collection一对多级联:
collection的属性值设置与association的一致,都有property、colum和select。
3)discriminator鉴别级级联:
<resultMap id="" type="">
....
<discriminator javaType="" colum="" >
<case value="" resultMap=""/>
<case value="" resultMap=""/>
</discriminator>
....
</resultMap>
三.动态SQL
MyBatis的动态SQL包括以下几种元素:
1.if元素示例如下,其中接收参数时判定其是否为空应该用_paremeter 而不是用传入的参数名(如本例传入的roleName判空时应该用_parameter进行代替,而不是roleName,是因为我们接收参数的parameterType="string"类型,而不是javaBean)
<select id="findRole" parameterType="String" resultMap="roleMap">
select *from t_role where 1=1
<if test="_parameter !=null ">
and role_name like concat('%',#{roleName},'%')
</if>
</select>
2.choose、when、otherwise元素
以上三种元素类似于switch....case....default 语句,parameter="role" ,role 是一个javaBean ,所以判段为不为空时可以直接使用属性名判定(如下)where元素的条件:
<select id="findRole" parameterType="role" resultMap="roleMap">
select *from t_role where 1=1
<choose>
<when test="roleNo != null and roleNo != ''">
and role_no = #{roleNo}
</when>
<when test="roleName != null and roleName !=''">
and role_name like concat('%',#{roleName},'%')
</when>
<otherwise>
and note is not null
</otherwise>
</choose>
</select>
-
trim 、where、 set 元素
set元素的使用,可以更新全部,也可以更新部分值。
<update id="updateRole" parameterType="role">
update t_role
<set>
<if test="roleName != null and roleName !=''">
role_name = #{roleName},
</if>
<if test="note!=null and note != ''">
note = #{note}
</if>
</set>
where role_no = #{roleNo}
</update>
trim的prefix代表的是语句的前缀,而prefixOverrides代表的是你需要去掉的那种字符串。
<select id="findRole" parameterType="role" resultMap="roleMap">
select *from t_role
<trim prefix="where" prefixOverrides="and">
<if test="roleName != null and roleName !=''">
and role_name like concat('%',#{roleName},'%')
</if>
</trim>
</select>
4.foreach元素
foreach元素是一个循环语句,它的作用是遍历集合。(下例中的user为javaBean)
<select id="findUserBySex" resultType="user">
select * from t_user where sex in
<foreach item="sex" index="index" collection="list" open="(" separator="," close=")">
#{sex}
</foreach>
</select>
collection 配置的sexList 是传递进来的参数名称,它可以是一个数组或者List、Set等集合;如果是list类型collection属性值需要为list ,如果是数组类型collection属性值为array,
item配置的是循环中当前元素别名;
index配置的是当前元素在集合的位置下标;
open和close配置的是以什么符号将这些集合元素包装起来;
separator 是各元素的间隔符。
5.bin元素
bin元素的作用是通过OGNL表达式去自定义一个上下文变量。(作用类似与mysql中的concat拼接模糊查找,但其同样可以在oracle数据库中使用,提高了可移植性)
使用bin模糊查询(其中_parameter代表接收到的参数):
<select id="findRole" resultType="Role">
<bind name="pattern" value="'%'+_parameter+'%'"/>
SELECT * FROM t_role where role_name like #{pattern}
</select>
以上只是单个参数的绑定,下面我们举例绑定多个参数的模糊查询:
//mapper接口
public List<RoleBean> findRole (@Param("roleName")String roleName,@Param("note")String note);
//mapper.xml
<select id="findRole" resultType="Role">
<bind name="pattern_roleName" value="'%'+roleName+'%'"/>
<bind name="pattern_note" value="'%'+note+'%'"/>
SELECT *FROM t_role where role_name like #{pattern_roleName}
and note like #{pattern_note}
</select>