MyBatis中实现多表查询

时间:2023-01-03 09:06:39

如果查询的数据量大,推荐使用N+1次查询。数据量少使用联合查询。。。

一、

1、Mybatis是实现多表查询方式

  1.1  业务装配:对两个表编写单表查询语句,在业务(Service)把查询的两表结果合并

  1.2  使用Auto Mapping 特性,在实现两表联合查询时通过别名完成映射

  1.3  使用MyBatis<resultMap>属性进行实现

2、多表查询时,类中包含另一个类的对象的分类

  2.1 单个对象

  2.2 集合对象

二、resultMap属性

  1、<resultMap>标签写在mapper.xml中,由程序员控制SQL查询结果与实体类的映射关系。

    1.2 默认MyBatis使用Auto Mapping特性

  2、使用<resultMap> 标签时,<select>标签不写resultType属性,而是使用resultMap属性 引用<resultMap>标签

  3、使用resultMap实现单表映射关系

    3.1 数据库设计

  MyBatis中实现多表查询

     3.2 实体类设计

    MyBatis中实现多表查询

      3.3 xxxmapper.xml代码

  <mapper namespace="com.bjsxt.mapper.TeacherMapper">
<resultMap type="Teacher" id="mymap">
<!-- 主键使用id标签配置映射关系-->
<id column="id" property="id1"/>
<!-- 其他列使用result标签配置映射关系 -->
<result column="name" property="name1"/>
</resultMap>
<select id="selall" resultMap="mymap">
select * from teacher
</select>
</mapper>

 三、使用resultMap 实现关联单个对象(N+1方式)

    4.1  N+1 查询方式,先查询出某个表的全部信息,根据这个表的信息查询另一个表的信息

    4.2 与业务装配的区别:

      4.2.1 之前在service里面写代码,现在由mybatis完成装配

    4.3 实现步骤:

      4.3.1 在Student 实现类中包含了一个Teacher 对象

      MyBatis中实现多表查询

      4.3.2 在TeacherMapper 中提供一个查询

  <mapper namespace="com.bjsxt.mapper.TeacherMapper">
<select id="selById" resultType="teacher" parameterType="int" >
select * from teacher where id=#{0}
</select>
</mapper>

      4.3.3 在StudentMapper中

          4.3.3.1 <association> 装配一个对象时使用(包含在student中的对象)

          4.3.3.2 property 关联对象

          4.3.3.3 select 通过哪个查询查询出这个对象的信息

          4.3.3.4 column 把当前表的哪个列的值作为参数传递给另一个查询

          4.3.3.5  大前提使用N+1方式时,如果列名和属性名相同可以不配置,使用Auto mapping特性,但是mybatis默认只会给列专配一次。。

  <mapper namespace="com.bjsxt.mapper.StudentMapper">
<resultMap type="student" id="stumap">
<id property="id" column="id"/>
<result property="name" column="name"/>
<result property="age" column="age"/>
<result property="tid" column="tid"/>
<!-- 如果关联一个对象 -->
<association property="teacher" select="com.bjsxt.mapper.TeacherMapper.selById" column="tid"></association>
</resultMap>
<select id="selall" resultMap="stumap">
select * from student
</select>
</mapper>

          4.3.3.6 可以把代码简化

  <mapper namespace="com.bjsxt.mapper.StudentMapper">
<resultMap type="student" id="stumap">
<result property="tid" column="tid"/>
<!-- 如果关联一个对象 -->
<association property="teacher" select="com.bjsxt.mapper.TeacherMapper.selById" column="tid"></association> </resultMap>
<select id="selall" resultMap="stumap">
select * from student
</select>
</mapper>

四、使用<resultMap>查询关联集合对象(N+1)

   1、在Teacher 中添加List<Student>

    MyBatis中实现多表查询

   2、 在StudentMapper.xml中添加通过tid查询

  <mapper namespace="com.bjsxt.mapper.StudentMapper">
<select id="selByTid" parameterType="int" resultType="student">
select * from student where tid=#{0}
</select>
</mapper>

   3、 在TeacherMapper.xml 中添加查询全部

      3.1、<collection/> 当属性是集合类型时使用的标签

 <mapper namespace="com.bjsxt.mapper.TeacherMapper">
<resultMap type="teacher" id="mymap">
<id column="id" property="id"/>
<result column="name" property="name"/>
<collection property="list" ofType="student" select="com.bjsxt.mapper.StudentMapper.selByTid" column="id"></collection>
</resultMap>
<select id="selAll" resultMap="mymap">
select * from teacher
</select>
</mapper>

 五、使用<resultMap> 实现加载集合数据(联合查询方式)

    1、在teacherMapper.xml中添加

      1.1 mybatis可以通过主键判断对象是否被加载过

        不需要担心创建重复 teacher

 <mapper namespace="com.bjsxt.mapper.TeacherMapper">        

          <resultMap type="teacher" id="mymap">
<id property="id" column="tid"/>
<result property="name" column="tname"/>
<collection property="list" ofType="student" >
<id property="id" column="sid"/>
<result property="name" column="sname"/>
<result property="age" column="age"/>
<result property="tid" column="tid"/>
</collection>
</resultMap> <select id="selAll" resultMap="mymap">
select t.id tid,t.name tname,s.id sid,s.name sname,age,tid from teacher t left join student s on t.id=s.tid
</select>
</mapper>

 六、 使用 Auto Mapping结合别名实现多表查询

  6.1 只能使用多表联合查询方式

  6.2 要求:查询出的列和属性名相同

  6.3  实现方式

    6.3.1  . 在SQL是关键字符,两侧添加返单引号

  <mapper namespace="com.bjsxt.mapper.StudentMapper">
<select id="selAll" resultType="student">
select t.id `teacher.id`,t.name `teacher.name`,s.id id,s.name name,age,tid
from student s left join teacher t on s.tid=t.id;
</select>
</mapper>

    

    注意点:::使用Auto Mapping 特性查询集合不好用 !!!!

七、 使用注解查询

  1、注解:为了简化配置文件

  2、Mybatis 的注解简化 xxxmapper.xml文件

   2.1 如果涉及动态SQL 依然使用 xxxmapper.xml

   3、xxxmapper.xml 和注解可以共存

   4、使用注解时 Mybatis.xml 中<mappers> 使用

    4.1 <package/>

    4.2 <mapper class="  "/>

    5、实现查询

	@Select("select * from teacher")
List<Teacher> selAll();

  6、实现插入

	@Insert("insert into teacher values(default,#{name})")
int inTeacher(Teacher teacher);

  7、实现修改

	@Update("update teacher set name=#{name} where id=#{id}")
int upTeacher(Teacher teacher);

  8、实现删除

	@Delete("delete from teacher where id=#{0}")
int delTeacher(int id);

  9、使用注解实现 <resultMap> 功能

    9.1、以 N+1 举例

    9.2、在StudentMapper 接口添加查询

@Select ("select * from student where tid=#{0}")
List<Student> selByTid(int tid);

      9.3、在TeacherMapper 接口添加

      9.3.1 @Results() 相当于 <resultMap>

      9.3.2 @Result() 相当于<id/> 或 <result/>

        9.3.2.1 @Result(id=true)  相当于<id/>

      9.3.3 @Many() 相当于<collection/>

      9.3.4 @One() 相当于<association/>

@Results(value={
@Result(id=true,property="id",column="id"),
@Result(property="name",column="name"), @Result(property="list",column="id",many=@Many(select="com.bjsxt.mapper.StudentMapper.selByTid" ))
})
@Select("select * from teacher")
List<Teacher> selTeacher();

MyBatis中实现多表查询的更多相关文章

  1. 在Mybatis中使用连表查询的一次实际应用

    以前在工作中很少使用多表关联查询,对连表查询的具体作用和使用场景也没有很直观的认识,通过这次在项目中的实际应用,对此有了一定的认识,特记录如下. 关联表介绍: 分别是属性表attr_info.属性值表 ...

  2. Mybatis中的多表查询 多对多

    示例:用户和角色 一个用户可以有多个角色 一个角色可以赋予多个用户 步骤: 1.建立两张表:用户表,角色表 让用户表和角色表具有多对多的关系. 需要使用中间表,中间表中包含各自的主键,在中间表中是外键 ...

  3. Mybatis中的多表查询 多对一&comma;一对多

    示例:用户和账户 一个用户可以有多个账户 一个账户只能属于一个用户(多个账户也可以属于同一个用户) 步骤: 1.建立两张表:用户表,账户表 让用户表和账户表之间具备一对多的关系:需要使用外键在账户表中 ...

  4. Hibernate中的多表查询及抓取策略

    1.Hibernate中的多表查询 1.1SQL中的多表查询 [交叉连接] select * from A,B; [内连接] 显示内连接:inner join(inner 可以省略) Select * ...

  5. mysql中的回表查询与索引覆盖

    了解一下MySQL中的回表查询与索引覆盖. 回表查询 要说回表查询,先要从InnoDB的索引实现说起.InnoDB有两大类索引,一类是聚集索引(Clustered Index),一类是普通索引(Sec ...

  6. Mybatis学习——一对一关联表查询

    1.SQL语句建表 CREATE TABLE teacher( t_id ) ); CREATE TABLE class( c_id ), teacher_id INT ); ALTER TABLE ...

  7. MyBatis总结-实现关联表查询

    一.一对一关联 1.1.提出需求 根据班级id查询班级信息(带老师的信息) 1.2.创建表和数据 创建一张教师表和班级表,这里我们假设一个老师只负责教一个班,那么老师和班级之间的关系就是一种一对一的关 ...

  8. MyBatis学习之多表查询

    一对多需求:即一张表class中又含有多张表(teacher,student)内容.现根据class_id 来获取对应的班级信息(包括学生和老师信息) 方式一:嵌套结果 使用嵌套结果映射来处理重复的联 ...

  9. Oracle中的多表查询

    多表查询 l 笛卡尔积: N*M l 使用关联字段消除笛卡尔积的多余数据: SELECT EMP.*,DEPT.DNAME,DEPT.LOC FROM EMP, DEPT WHERE EMP.DEPT ...

随机推荐

  1. 安装Apache Felix OSGI Framework小记

    Felix是apache的开源OSGI服务框架,到 http://felix.apache.org/downloads.cgi 可以下载到最新的版本. 解压后目录结构如下: felix-framewo ...

  2. Python编程--类的分析

    一.类的概念 python是面向对象的编程语言,详细来说,我们把一类相同的事物叫做类,其中用相同的属性(其实就是变量描述),里面封装了相同的方法,比如:汽车是一个类,它包括价格.品牌等属性.那么我们如 ...

  3. Unity 敌人波次设计

    一.平均时间随机敌人 将所有种类敌人预制物体放在一个列表里面,每隔时间T从列表中随机选出一个生成在场景中. 二.时间加权紧迫度随机敌人 在随机情况下每种敌人出现的概率近似相等,当敌人种类较多时,有可能 ...

  4. Django之ModalForm

    ModelForm 自己定义的form--->Form--->BaseForm 自己定义的ModelForm--->ModelForm--->BaseModelForm---& ...

  5. Android 导入 aar 库文件

    1. 在需要导入 aar 的 module 目录下创建一个名叫 "aars" 的目录,并把 aar 文件复制到这里. 2. 在项目的 build.gradle 文件里添加 allp ...

  6. 《剑指offer》面试题39 二叉树的深度(java)

    摘要: 今天翻到了<剑指offer>面试题39,题目二中的解法二是在函数的参数列表中通过指针的方式进行传值,而java是没有指针的,所以函数要进行改造.然而我翻了下别人的java版本(我就 ...

  7. POJ-3744-概率dp&plus;矩阵幂&lpar;分段&rpar;

    Scout YYF I Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 10214   Accepted: 2980 Desc ...

  8. tomcat 设定自定义图片路径

    1.问题 平常图片路径都是在项目目录下存放,都是ip地址+端口号+项目名+图片路径,因为项目需要要把图片从tomcat中分离出来,并且设置可以通过自定义地址访问自定义图片路径. 2.解决 在 tomc ...

  9. 九个很有用的php功能

    1. 函数的任意数目的参数 你可能知道PHP允许你定义一个默认参数的函数.但你可能并不知道PHP还允许你定义一个完全任意的参数的函数 下面是一个示例向你展示了默认参数的函数: 1 2 3 4 5 6 ...

  10. PHP文件操作&lpar;三&rpar;-文件的写入

    fwrite()  //对文件进行写入 fwrite(file,string,length)file:必选项,需要写入的文件string:必选项,规定要写入文件的字符串length:可选项,规定要写入 ...