[MyBatis]-16 多表关联查询_单个对象_关联方式实现


prtyaa
prtyaa 2023-12-27 16:20:46 64622
分类专栏: 资讯

这里演示的是多对一

多:学生

一:班级

多个学生一个班级,通过查询学生后再查询班级

之前用的业务装配或者是n+1查询都是存在一个缺点的,就是都是分别执行单次查询,然后再组装,无形之中就给数据库增加了巨大的压力,毕竟是要执行多次查询

所以接下来要介绍使用resultMap标签来实现两张表一起查并且拼接在一起

这样就只有查询一次sql 缺点就是写的时候要细心一点就是了

首先先是要使用的sql语句

select  s.id sid ,s.`name` sname ,s.age age ,s.gender gender ,s.cid cid, 
        c.id ,c.`name`,c.room
from t_student s
LEFT JOIN t_class c
on s.cid = c.id

改写studentMapeer.xml

思路整理:实际上就是把association 标签当作resultMap标签用了,朋友们可以看下下面的代码仔细品一下,看是不是这么个用法

<mapper namespace="com.lin.mapper.StudentMapper">
    <resultMap id="smap" type="Student">
        <id property="id" column="sid"/>
        <result property="name" column="sname"/>
        <result property="age" column="age"/>
        <result property="gender" column="gender"/>
        <association property="clazz" javaType="Clazz">
            <id property="id" column="id"/>
            <result property="name" column="cname"/>
            <result property="room" column="croom"/>
        </association>
    </resultMap>
    <select id="selAll" resultMap="smap">
        select  s.id sid ,s.`name` sname ,s.age age ,s.gender gender ,s.cid cid,
                c.id cid ,c.`name` cname ,c.room croom
        from t_student s
        LEFT JOIN t_class c
        on s.cid = c.id
    </select>
</mapper>

association 标签中

javaType 属性表示当前对象, 可以写全限定路径或别名。

association 指定对象属性的映射关系。

项目结构中删除了ClassMapper.interface 和ClassMapper.xml

其他代码保持不变

mapper层

StudentMapper.interface

public interface StudentMapper {
    List<Student> selAll();
}

StudentMapper.xml

<mapper namespace="com.lin.mapper.StudentMapper">
    <resultMap id="smap" type="Student">
        <id property="id" column="sid"/>
        <result property="name" column="sname"/>
        <result property="age" column="age"/>
        <result property="gender" column="gender"/>
        <association property="clazz" javaType="Clazz">
            <id property="id" column="id"/>
            <result property="name" column="cname"/>
            <result property="room" column="croom"/>
        </association>
    </resultMap>

    <select id="selAll" resultMap="smap">
        select  s.id sid ,s.`name` sname ,s.age age ,s.gender gender ,s.cid cid,
                c.id cid ,c.`name` cname ,c.room croom
        from t_student s
        LEFT JOIN t_class c
        on s.cid = c.id
    </select>
</mapper>

pojo层省略

service层

StudentService.interface

public interface StudentService {
    List<Student> selAll();
}

StudentServiceImpl.class

public class StudentServiceImpl implements StudentService {
    @Override
    public List<Student> selAll() {
        SqlSession session = MyBatisUtil.getSession();
        //获取到学生mapper
        StudentMapper stuMapper = session.getMapper(StudentMapper.class);
        List<Student> list = stuMapper.selAll();
        session.close();
        return list;
    }
}

测试类

public class TestQuery {

    public static void main(String[] args) {
        StudentService service = new StudentServiceImpl();
        List<Student> list = service.selAll();
        for (Student student : list) {
            System.out.println(student);
        }
    }
}

网站声明:如果转载,请联系本站管理员。否则一切后果自行承担。

本文链接:https://www.xckfsq.com/news/show.html?id=31578
赞同 0
评论 0 条
prtyaaL0
粉丝 1 发表 2554 + 关注 私信
上周热门
银河麒麟添加网络打印机时,出现“client-error-not-possible”错误提示  1448
银河麒麟打印带有图像的文档时出错  1365
银河麒麟添加打印机时,出现“server-error-internal-error”  1151
统信桌面专业版【如何查询系统安装时间】  1073
统信操作系统各版本介绍  1070
统信桌面专业版【全盘安装UOS系统】介绍  1028
麒麟系统也能完整体验微信啦!  984
统信【启动盘制作工具】使用介绍  627
统信桌面专业版【一个U盘做多个系统启动盘】的方法  575
信刻全自动档案蓝光光盘检测一体机  484
本周热议
我的信创开放社区兼职赚钱历程 40
今天你签到了吗? 27
信创开放社区邀请他人注册的具体步骤如下 15
如何玩转信创开放社区—从小白进阶到专家 15
方德桌面操作系统 14
我有15积分有什么用? 13
用抖音玩法闯信创开放社区——用平台宣传企业产品服务 13
如何让你先人一步获得悬赏问题信息?(创作者必看) 12
2024中国信创产业发展大会暨中国信息科技创新与应用博览会 9
中央国家机关政府采购中心:应当将CPU、操作系统符合安全可靠测评要求纳入采购需求 8

添加我为好友,拉您入交流群!

请使用微信扫一扫!