MyBatis嵌套对象中的List查询

余生长醉 提交于 2019-12-03 22:34:43
  1. <resultMap id="myDept" type="com.stayreal.mybatis.Department">
    <id column="did" property="id"/>
    <result column="dept_name" property="name"/>
    <!-- collection定义关联集合类型的属性封装规则
    offType:指定集合中的元素类型
    -->
    <collection property="employees" ofType="com.stayreal.mybatis.Employee">
    <id column="eid" property="id"/>
    <result column="last_name" property="lastName"/>
    <result column="email" property="email"/>
    <result column="gender" property="gender"/>
    </collection>

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!