聚集元素用来处理“一对多”的关系。需要指定映射的Java实体类的属性,属性的javaType(一般为ArrayList);列表中对象的类型ofType(Java实体类);对应的数据库表的列名称;
不同情况需要告诉MyBatis 如何加载一个聚集。MyBatis 可以用两种方式加载:
- select: 执行一个其它映射的SQL 语句返回一个Java实体类型。较灵活但会将执行多次嵌套的SQL语句。
- resultMap: 使用一个嵌套的结果映射来处理通过join查询结果集,映射成Java实体类型。
两种加载方式格式如下:
1.集合的嵌套查询(select)
<collection property="Java属性名" ofType="另一Java类名" javaType="ArrayList" column="关联主键ID(用于嵌套查询SQL语句传入参数,多个用逗号分开)" select="另一个select映射SQL的ID"/>
<select parameterType="int" resultType="另一Java类名" id="另一个select映射SQL的ID">
SQL语句
<select>
注意:column属性的值必须与相应的SQL查询语句中的列名相同。MyBatis会将第一条SQL语句查询出来的该列的值用于所嵌套的SQL映射语句的入参。因第一条SQL语句查询出来的每个该列的值都将用于执行另一个SQL语句,所以嵌套的SQL语句将被多次执行。
2.集合的嵌套结果(resultMap)
<collection property="Java属性名" ofType="另一Java类名" javaType="ArrayList" resultMap="另一个resultMap的ID"/>
<resultMap="另一个resultMap的ID" type="另一Java类名">
<id property="id" column="关联主键ID"/>
........
</resultMap>
注意:column属性的值必须与相应的SQL查询语句的列名一样。
集合的嵌套查询(select)示例:
[html] view plain copy
<?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.myapp.mapper.UserMapper">
<select id="getUserList" resultMap="userdetailResult">
select * from t_user where id between 1 and 10
</select>
<select id="selectRoles" resultType="com.myapp.domain.Role" parameterType="int">
select * from t_user_role a,t_role b where a.user_id=#{id} and a.role_id=
</select>
<resultMap id="userdetailResult" type="User">
<id property="id" column="user_id" />
<result property="name" column="user_name"/>
<result property="createDate" column="create_date"/>
<collection property="roles" ofType="Role" javaType="ArrayList" column="id" select="selectRoles"/>
</resultMap>
</mapper>
集合的嵌套结果(result)示例:
[html] view plain copy
<?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.myapp.mapper.UserMapper">
<select id="getUserList" resultMap="userdetailResult">
SELECT
u.id as user_id,
as user_name,
u.create_date,
as role_id,
as role_name
FROM t_user u
LEFT JOIN t_user_role ur ON(u.id=ur.user_id)
LEFT JOIN t_role r ON(=ur.role_id) where u.id=1
</select>
<resultMap id="userdetailResultNew" type="User">
<id property="id" column="user_id" />
<result property="name" column="user_name"/>
<result property="createDate" column="create_date"/>
<collection property="roles" ofType="Role" javaType="ArrayList">
<id property="id" column="role_id"/>
<result property="name" column="role_name"/>
</collection>
</resultMap>
<resultMap id="roleResult" type="Role">
<id property="id" column="role_id"/>
<result property="name" column="role_name"/>
</resultMap>
<resultMap id="userdetailResult" type="User">
<id property="id" column="user_id" />
<result property="name" column="user_name"/>
<result property="createDate" column="create_date"/>
<collection property="roles" ofType="Role" javaType="ArrayList" resultMap="roleResult"/>
</resultMap>
</mapper>
mybatis的javaType和ofType
都是指定对象的类型 不同的是当使用反向查询select从另一个maper文件中取出数据时必须用ofType
都可以为collection和association是指定对象的类型,
都不是必须写的, 只有反向select时需要ofType;
一般在collection中默认就是List所以不用指定, 如果指定了注意参数必须要是集合类型的javaType="java.util.ArrayList", 否则会报错, 参数不匹配;
association中javaType="com.ldrc.srm.jczx.dal.dataobject.system.User" 要指定为对象, 也可以不指定
切记当查询中有多个id时,需要看下数据库id的显示 ,然后进行指定字段