mybatis查询结果包含集合

14 篇文章 0 订阅

只需要在 xml中,把返回结果单独定义即可。

本质上就是一个关联查询,相当于group by 分组了一下,字段相同的那个,被提取出来到外边的那个对象里了。

1.表说明

本案例,两张表,多对一,本次案例,一个学生有多个课程

学生表:a表:id,name
课程表:b表:id,name,sId(外键学生id)

2. xml写法说明
<!-- mapper接口对应的sql查询语句-->
    <select id="getPage" resultMap="hasCollection">	
    <!--
    	resultMap指定返回使用下边写的对象,正常写查询
		测试直接使用sql查询,会出现多个记录,学生,以及不同的课程名称,
		通过这个resultMap,会按学生进行分组,重复的字段(学生信息),会抽取出来,到第一层resultMap里
	-->
        SELECT
        a.id as id,
        a.`name` as `name`,
        b.id as lessonId,
        b.`name` as lessonName,
        b.sId
        FROM
        lesson AS b,
        student AS a
        where b.student_id = a.id
    </select>

<!-- 此处定义需要返回的对象-->
	<!--
		column需要是sql句子中查到的字段的别名(没别名就是名字),
		property中,是指定映射到实体上的字段名,
		collection中:javatype是指定返回结果中的对象
	-->
    <resultMap id="hasCollection" type="com.mbg.dto.StudentLessonDTO">
        <id column="id" jdbcType="INTEGER" property="id"/>
        <result column="name" jdbcType="VARCHAR" property="name"/>
        <collection property="lessons" resultMap="lessonCollection"/>
    </resultMap>

	<resultMap id="lessonCollection" type="com.mbg.entity.Lesson">
        <id column="lessonId" jdbcType="INTEGER" property="id"/>
        <result column="lessonName" jdbcType="VARCHAR" property="name"/>
        <result column="sId" jdbcType="VARCHAR" property="sId"/>
    </resultMap>
3. 实体类

用到了lombok

@Data
public class StudentLessonDTO extends Student implements Serializable {

    private List<Lesson> lessons;
}


@Data
public class Student implements Serializable {

    private Integer id;

	private String name;
}

@Data
public class Lesson implements Serializable {

    private Integer id;

	private String name;

	private Integer sId;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值