欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Mybatis自定义SQL的关系映射、分页、排序功能的实现

程序员文章站 2023-03-07 14:06:47
目的: 记录数据库表与实体对象之间不同的映射关系如何用mybatis的自定义sql和结果返回集处理。1、三种对象映射关系1.1 一对一一个人对应一个身份证,一位同学对应一个班级,每个房间都有自己的房间...

目的: 记录数据库表与实体对象之间不同的映射关系如何用mybatis的自定义sql和结果返回集处理。

1、三种对象映射关系

1.1 一对一

一个人对应一个身份证,一位同学对应一个班级,每个房间都有自己的房间号,当一个事物它对应另一个事物是唯一的,那么它们之间的关系就是一对一的。

这里我演示的案例是,一个学生有着一位老师

老师基础信息:

Mybatis自定义SQL的关系映射、分页、排序功能的实现

学生详细信息:

Mybatis自定义SQL的关系映射、分页、排序功能的实现

如果说,我们需要将两个表一起查出来,我们可以这么做:

问题: 如果对象的列重复了,必须要使用到别名

1、先定义实体结构,也就是我们返结果的实体类

public class student {
 @tableid
 private int id;
 private string name;
 private int tid;
 @tablefield(exist = false)
 private teacher teacher;
}

teacher:

public class teacher {
 @tableid
 private int id;
 private string name;
}

2、 编写xml文件

这里有两种方式,使用association时的关键在于告诉mybatis如何加载关联(assocition)。

  • 嵌套查询:通过执行另外一个 sql 映射语句来返回预期的复杂类型。
  • 嵌套结果:使用嵌套结果映射来处理重复的联合结果的子集。

第一种: 使用嵌套查询,也就是使用另一个sql

// teachermapper.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.lll.mybatisplusdemo.mapper.teachermapper">
 <select id="getteacher" parametertype="int" resulttype="teacher">
 select * from teacher where id = #{id};
 </select>
</mapper>

// studentmapper.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">

 <select id="getstudent2" parametertype="int" resultmap="getstudentmap2">
 select * from student where id =#{id};
 </select>

 <resultmap id="getstudentmap2" type="student">
 <id column="id" property="id"></id>
 <result column="name" property="name"></result>
 <result column="tid" property="tid"></result>
 <association property="teacher" javatype="teacher" column="tid" select="com.lll.mybatisplusdemo.mapper.teachermapper.getteacher">
  <id column="id" property="id"></id>
  <result column="name" property="name"></result>
 </association>
 </resultmap>
</mapper>

嵌套查询的方式很简单,但是对于大型数据集合和列表将不会表现很好。问题就是我们熟知的
“n+1 查询问题”。概括地讲, n+1 查询问题可以是这样引起的:

  • 你执行了一个单独的 sql 语句来获取结果列表(就是“+1”)。
  • 对返回的每条记录,你执行了一个查询语句来为每个加载细节(就是“n”)。

第二种: 使用嵌套结果来映射联合查询来的数据

<?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.lll.mybatisplusdemo.mapper.studentmapper">
 <select id="getstudent" parametertype="int" resultmap="getstudentmap">
  select a.*,b.id as cid,b.name as cname from `student` as a,teacher as b where a.id =#{id} and a.tid = b.id;
 </select>
 <resultmap id="getstudentmap" type="student">
 <id column="id" property="id"></id>
 <result column="name" property="name"></result>
 <result column="tid" property="tid"></result>
 <association property="teacher" javatype="teacher">
  <id column="cid" property="id"></id>
  <result column="cname" property="name"></result>
 </association>
 </resultmap>
</mapper>

我们在相应的mapper中添加方法接口便可以使用了。

1.2 一对多

案例:一个老师有多个学生

1、实体类

public class teacher {
 @tableid
 private int id;
 private string name;
 @tablefield(exist = false)
 private list<student> students;
}

2、编写xml

同样还是,我们先来个嵌套结果映射

嵌套结果:

// teachermapper.xml
	<select id="getstudent" parametertype="int" resultmap="getstudentmap">
 select a.*,b.id as cid,b.name as cname,b.tid
 from teacher as a , student as b
 where b.tid = a.id and a.id =#{id};
 </select>

 <resultmap id="getstudentmap" type="teacher">
 <id column="id" property="id"></id>
 <result column="name" property="name"></result>
 <collection property="students" oftype="student">
  <id column="cid" property="id"></id>
  <result column="cname" property="name"></result>
  <result column="tid" property="tid" ></result>
 </collection>
 </resultmap>

嵌套查询:

// teachermapper.xml
	<select id="getstudent2" parametertype="int" resultmap="getstudentmap2">
 select * from teacher as a where a.id = #{id}

 </select>
 <resultmap id="getstudentmap2" type="teacher">
 <id column="id" property="id"></id>
 <result column="name" property="name"></result>
 <collection property="students" column="id" oftype="student" select="com.lll.mybatisplusdemo.mapper.studentmapper.getstudentbytid">
 </collection>
 </resultmap>

	// studentmapper.xml
 <select id="getstudentbytid" parametertype="int" resulttype="student">
 select * from student as a where a.tid = #{id}
 </select>

1.3 多对多

学生与课程是多对多的关系,与上面的一对多的操作方式是类似的

2、自定义sql如何做分页

mapper定义方法,方法传入page参数

public interface usermapper{
 ipage<user> selectpagevo(page<user> page);
}

usermapper.xml文件编写一个普通的返回结果是list的方法,mybatis会自动帮你做分页

<select id="selectpage" resulttype="com.baomidou.cloud.entity.uservo">
 select * from user 
</select>

3、自定义sql如何做排序

结论:使用order by,记住要使用'$',不能使用'#'

<select id="selectpage" resulttype="com.baomidou.cloud.entity.uservo">
 select * from user order by ${sortcolumn} ${sortorder}
</select>

4、自定义sql中的#{}和${}的区别

1、传入的参数在sql中显示不同

#传入的参数在sql中显示为字符串(当成一个字符串),会对自动传入的数据加一个双引号。

例:使用以下sql

select id,name,age from student where id =#{id}

当我们传递的参数id为 “1” 时,上述 sql 的解析为:

select id,name,age from student where id ="1"

$传入的参数在sql中直接显示为传入的值

例:使用以下sql

select id,name,age from student where id =${id}

当我们传递的参数id为 “1” 时,上述 sql 的解析为:

select id,name,age from student where id =1

2、#可以防止sql注入的风险(语句的拼接);但$无法防止sql注入。

3、$方式一般用于传入数据库对象,例如传入表名。

4、大多数情况下还是经常使用#,一般能用#的就别用$;但有些情况下必须使用$,例:mybatis排序时使用order by 动态参数时需要注意,用$而不是#。

到此这篇关于mybatis自定义sql的关系映射、分页、排序的文章就介绍到这了,更多相关mybatis自定义sql的关系映射内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!