Mybatis中Collection集合标签的使用详解
作者:Run4U 时间:2023-07-10 05:09:35
mybatis简单的CURD就不用多说了,网上相关博客文档一大堆。分析一下Mybatis里面的collection聚集查询。
假设一个班级有多名学生为例,通过班级号查询出该班级的信息,和班级里面的所有学生的信息,一般的做法就是通过班级号把班级的信息查询出来,再通过班级ID号把该班级里面的所有学生查询出来,我们不用这种通用的方法
1.班级实体类可以定义为这样:
import java.util.List;
public class ClazzEntity {
private int clazzID;
private String clazzName;
private List<StudentEntity> studentList;
public int getClassID() {
return clazzID;
}
public int getClazzID() {
return clazzID;
}
public void setClazzID(int clazzID) {
this.clazzID = clazzID;
}
public String getClazzName() {
return clazzName;
}
public void setClazzName(String clazzName) {
this.clazzName = clazzName;
}
public List<StudentEntity> getStudentList() {
return studentList;
}
public void setStudentList(List<StudentEntity> studentList) {
this.studentList = studentList;
}
}
学生实体类定义:
package com.cn.hnust.pojo;
public class StudentEntity {
private int stuID;
private String stuName;
private int stuAge;
private String stuAddress;
public int getStuID() {
return stuID;
}
public void setStuID(int stuID) {
this.stuID = stuID;
}
public String getStuName() {
return stuName;
}
public void setStuName(String stuName) {
this.stuName = stuName;
}
public int getStuAge() {
return stuAge;
}
public void setStuAge(int stuAge) {
this.stuAge = stuAge;
}
public String getStuAddress() {
return stuAddress;
}
public void setStuAddress(String stuAddress) {
this.stuAddress = stuAddress;
}
}
2.数据库建表语句:
CREATE TABLE student_t
(
stuno INT PRIMARY KEY,
stuname VARCHAR(20),
stuage INT,
stuaddress VARCHAR(20) ,
classid INT
);
CREATE TABLE class_t
(
classid INT PRIMARY KEY,
classname VARCHAR(20)
);
3.查询ClazzEntity中的学生信息列表StudentEntity,通过mybatis中的collection标签来配置,其中,ofType是查询返回的学生信息对应的实体类,select为要执行的查询学生列表的查询语句,mybatis的xml配置文件如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.cn.hnust.dao.InfoManageDao" >
<resultMap id="ClazzResultMap" type="com.cn.hnust.pojo.ClazzEntity" >
<id column="classID" property="clazzID" jdbcType="INTEGER" />
<result column="className" property="clazzName" jdbcType="VARCHAR" />
<collection property="studentList" column="classID" javaType="ArrayList"
ofType="com.cn.hnust.pojo.StudentEntity" select="getStudentByClassID"/>
</resultMap>
<resultMap id="StudentResultMap" type="com.cn.hnust.pojo.StudentEntity">
<id property="stuID" column="stuID" />
<result property="stuName" column="stuName" />
<result property="stuAge" column="stuAge" />
<result property="stuAddress" column="stuAddress" />
</resultMap>
<select id="getClassByID" resultMap="ClazzResultMap" parameterType="java.lang.Integer" >
select classID,className
from class_t
where classID = #{clazzID}
</select>
<select id="getStudentByClassID" resultMap="StudentResultMap" parameterType="java.lang.Integer" >
select stuID,stuName,stuAge,stuAddress,classID
from student_t
where classID = #{clazzID}
</select>
</mapper>
这样就可以查到一个班级的信息,和班级里面的所有学生信息:
ClazzEntity [clazzID=1, clazzName=junior, studentList=[StudentEntity [stuID=1001, stuName=wanghai, stuAge=18, stuAddress=beijing], StudentEntity [stuID=1002, stuName=zhangdong, stuAge=20, stuAddress=shanghai]]]
来源:https://blog.csdn.net/minpann/article/details/51217106/
标签:Mybatis,Collection,集合
0
投稿
猜你喜欢
C#利用GDI+画图的基础实例教程
2023-09-30 06:23:39
javaWeb使用servlet搭建服务器入门
2023-11-21 04:47:45
Android 三种实现定时器详解及实现方法
2021-11-18 21:53:42
Java 实战项目之精品养老院管理系统的实现流程
2022-05-30 08:18:11
jbuilder2006连接sqlserver2000的方法
2022-08-21 14:20:09
Android实现波浪球效果
2021-09-02 16:07:53
Android屏幕旋转之横屏竖屏切换的实现
2023-10-29 21:40:10
如何使用Java给您的图片瘦身之Thumbnailator技术
2023-10-31 10:25:52
Flutter如何轻松实现动态更新ListView浅析
2023-05-23 09:32:37
详解Dagger2在Android开发中的新用法
2021-08-23 22:39:40
详解Flutter中视频播放器插件的使用教程
2023-06-15 23:47:31
Java将字符串String转换为整型Int的两种方式
2021-12-11 10:01:32
Java 重写时应当遵守的 11 条规则
2023-02-10 18:58:06
Java实现Http工具类的封装操作示例
2021-08-14 10:27:57
MyBatis实现物理分页的实例
2023-03-13 04:21:45
Spring Boot全局异常处理解析
2023-07-06 07:16:35
Spring boot+mybatis+thymeleaf 实现登录注册增删改查功能的示例代码
2023-10-05 04:20:53
Android TextView跑马灯效果实现方法
2023-09-27 04:16:09
C++实现LeetCode(159.最多有两个不同字符的最长子串)
2023-06-20 22:39:46
java 串口通信实现流程示例
2023-02-08 01:10:35