时间:2021-05-20
数据库结构
tid是student的外键,是teacher表的id
JavaBean
public class Student { private int id; private String name; private Teacher teacher;}public class Teacher { private int id; private String name;}mapper.java
public interface StudentMapper { List<Student> getStudent(); List<Student> getStudent2();}Student类里面有teacher,要想查出Student中的Teacher就需要映射。
方法有二
(1)
<select id="getStudent" resultMap="StudentTeacher"> select * from mybatis.student </select> <resultMap id="StudentTeacher" type="Student"> <result property="id" column="id"/> <result property="name" column="name"/> <association property="teacher" column="tid" javaType="Teacher" select="getTeacher"/> </resultMap> <!--子查询--> <select id="getTeacher" resultType="Teacher"> select * from mybatis.teacher where id=#{Anything} </select>(2)
<select id="getStudent2" resultMap="StudentTeacher2"> select * from mybatis.student as s ,mybatis.teacher as t where s.tid=t.id </select> <resultMap id="StudentTeacher2" type="Student"> <result property="id" column="id"/> <result property="name" column="name"/> <association property="teacher" javaType="Teacher"> <result property="id" column="tid"/> <result property="name" column="name"/> </association> </resultMap>JavaBean
public class Teacher2 { private int id; private String name; //一个老师对应多个学生 private List<Student2> students;}public class Student2 { private int id; private String name; private int tid;}mapper.java
public interface TeacherMapper2 { List<Teacher2> getTeacher(@Param("id") int id);}mapper.xml
<?xml version="1.0" encoding="GBK" ?><!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"><mapper namespace="com.mybatis.DAO.TeacherMapper2"> <select id="getTeacher" parameterType="int" resultMap="teacherS"> select s.id, s.name, s.tid,t.id as tid, t.name as tname from mybatis.student as s ,mybatis.teacher as t where s.tid=t.id and t.id=#{id} </select> <resultMap id="teacherS" type="teacher2"> <result property="id" column="tid"/> <result property="name" column="tname"/> <collection property="students" ofType="student2"> <result property="id" column="id"/> <result property="name" column="name"/> <result property="tid" column="tid"/> </collection> </resultMap></mapper>到此这篇关于Mybatis一对多与多对一查询处理的文章就介绍到这了,更多相关Mybatis一对多与多对一查询内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
有时候我们在查询数据库时,需要以查询结果为查询条件进行关联查询。在mybatis中通过association标签(一对一查询,collection一对多查询)实
一对一查询在实际开发中,经常会遇到一对一查询,一对多查询等。这里我们先来看一对一查询。例如:每本书都有一个作者,作者都有自己的属性,根据这个,我来定义两个实体类
Mybatis中的一对多对象关联查询查询模拟情景,商品与商品详情:一件商品可以对应多个商品详情信息,即从商品➡商品详情方向看,属于一对多。在一对多
1、概念:MyBatis中的延迟加载,也称为懒加载,是指在进行表的关联查询时,按照设置延迟规则推迟对关联对象的select查询。例如在进行一对多查询的时候,只查
项目中经常会使用到一对多的查询场景,但是PageHelper对这种嵌套查询的支持不够,如果是一对多的列表查询,返回的分页结果是不对的参考Github上的说明:h