MyBatis(十一) 嵌套结果集的方式,使用collection标签定义关联的集合类型的属性封装规则

时间:2022-02-22 02:51:51

(1)接口中编写方法

public Dept getDeptPlusById(Integer id);

(2)Mapper文件

   <resultMap type="com.eu.bean.Dept" id="MyPlus">
<id column="id" property="id"/>
<result column="dept_name" property="deptName"/>
<collection property="emps" ofType="com.eu.bean.Emp">
<id column="id" property="id"/>
<result column="last_name" property="lastName"/>
<result column="gender" property="geder"/>
</collection>
</resultMap> <!-- public Dept getDeptPlusById(Integer id); -->
<select id="getDeptPlusById" resultType="MyPlus">
SELECT *FROM dept d
JOIN emp e
ON d.id=e.d_id
WHERE d.id=#{id}
</select>

欢迎添加本人微信,带你加入Java学习交流群,还有学习资料等你获取。

MyBatis(十一) 嵌套结果集的方式,使用collection标签定义关联的集合类型的属性封装规则