[MyBatis]-17 多表关联查询_集合对象_关联方式实现


prtyaa
prtyaa 2023-12-27 16:20:24 66896
分类专栏: 资讯

思路整理一下

之前一直做的都是多对一的查询

多:学生

一:班级

通过查到学生后在去查询班级

现在倒过来,做1对多的查询,一个班级多个学生

那怎么处理这个多呢,实际上就是吧所有的学生封装进一个集合里表现出来 ,最直观的就是在class的实体类中添加一个学生类型的集合

思路:

在pojo里的Class类 的属性中加入Student的集合,将查到的Student信息封装进Class类里面

pojo层

Clazz.class

public class Clazz implements Serializable {

    private int id;
    private String name;
    private String room;
    private List<Student> studentsList;
}

Student.class

public class Student  implements Serializable {

    private int id;
    private String name;
    private int age;
    private String gender;
    private int cid;
}

Mapper层

ClassMapper.interface

public interface ClazzMapper {
    List<Clazz> selAll();
}

ClassMapper.xml

重点:

这里使用了collection的标签

property:对应的是实体类中的属性

select:要执行的查询引用

column:对应的列

这里还是那句话,细品一下,是不是collection标签的用法和association的用法异曲同工呢

<mapper namespace="com.lin.mapper.ClazzMapper">
    <resultMap id="cmap" type="Clazz">
        <id property="id" column="id"/>
        <!-- 集合不在使用association 而是使用collection -->
        <collection property="studentsList" 
       select="com.lin.mapper.StudentMapper.selByCid" column="id"/>

    </resultMap>
    <select id="selAll" resultMap="cmap" >
        select * from t_class
    </select>
    
</mapper>

Student.interface

public interface StudentMapper {
    List<Student> selByCid(int cid);
}

Student.xml

<mapper namespace="com.lin.mapper.StudentMapper">
    <select id="selByCid" resultType="Student" parameterType="int">
        select * from t_student where cid =#{0}
    </select>
</mapper>

service层

ClassService

public interface ClassService {

    List<Clazz> selAll();
}

ClassServiceImpl

public class ClassServiceImpl implements ClassService {
    @Override
    public List<Clazz> selAll() {
        SqlSession session = MyBatisUtil.getSession();
        ClazzMapper mapper = session.getMapper(ClazzMapper.class);
        List<Clazz> list = mapper.selAll();
        session.close();
        return list;
    }
}

test

public class TestQuery {
    public static void main(String[] args) {
        ClassService service = new ClassServiceImpl();
        List<Clazz> list = service.selAll();
        for (Clazz clazz : list) {
            System.out.println(clazz);
        }
    }
}

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

本文链接:https://www.xckfsq.com/news/show.html?id=31577
赞同 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

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

请使用微信扫一扫!