八十三、MyBatis 框架动态 SQL

举报
托马斯-酷涛 发表于 2022/05/26 01:55:29 2022/05/26
【摘要】 文章目录 MyBatis 框架动态 SQL 环境准备 动态 SQL 之 if 动态 SQL 之 where 动态 SQL 之 foreach 动态 SQL 之代码片段   MyBatis 框架动态 SQL 动态 SQL,通过 MyBatis 提供的各种标签对条件作出判断...

文章目录

MyBatis 框架动态 SQL

环境准备

动态 SQL 之 if

动态 SQL 之 where

动态 SQL 之 foreach

动态 SQL 之代码片段


 

MyBatis 框架动态 SQL

动态 SQL,通过 MyBatis 提供的各种标签对条件作出判断以实现动态拼接 SQL 语句。这里的条件判断使用的表达式为 OGNL 表达式。常用的动态 SQL 标签有<if>、<where>、<choose/>、<foreach>等。

MyBatis 的动态 SQL 语句,与 JSTL 中的语句非常相似。

动态 SQL,主要用于解决查询条件不确定的情况:在程序运行期间,根据 用户提交的查询条件进行查询。提交的查询条件不同,执行的 SQL 语句不同。 若将每种可能的情况均逐一列出,对所有条件进行排列组合,将会出现大量的 SQL 语句。此时,可使用动态 SQL 来解决这样的问题。

环境准备

1、创建新的 maven 项目,加入 mybatis , mysql 驱动依赖

2、创建实体类 Student , StudentDao 接口,StudentDao.xml ,mybatis.xml , 测试类

3、使用之前的表 student。

在 mapper 的动态 SQL 中若出现大于号(>)、小于号(=),小于等于号(<=)等符号,最好将其转换为实体符号。否则, XML 可能会出现解析出错问题。

特别是对于小于号(<),在 XML 中是绝不能出现的。否则解析 mapper 文件会出错。

实体符号表:

< 小于 &lt
> 大于 &gt
>= 大于等于 &gt;=
<= 小于等于 &lt;=

动态 SQL 之 if

对于该标签的执行,当 test 的值为 true 时,会将其包含的 SQL 片断拼接 到其所在的 SQL 语句中。

语法: <if test="条件">  sql 语句的部分</if>

接口方法:

List<Student> selectStudentIf(Student student);

 

mapper文件:


  
  1. <select id="selectStudentIf" resultType="com.bjpowernode.domain.Student">
  2. select id,name,email,age from student
  3. where 1=1
  4. <if test="name != null and name !='' ">
  5. and name = #{name}
  6. </if>
  7. <if test="age > 0 ">
  8. and age &gt; #{age}
  9. </if>
  10. </select>

测试方法:


  
  1. @Test
  2. public void testSelect() throws IOException {
  3. Student param = new Student();
  4. param.setName("李力");
  5. param.setAge(18);
  6. List<Student> studentList = studentDao.selectStudentIf(param);
  7. studentList.forEach( stu -> System.out.println(stu));
  8. }

动态 SQL 之 where

<if/>标签的中存在一个比较麻烦的地方:需要在 where 后手工添加 1=1 的子句。因为,若 where 后的所有<if/>条件均为 false,而 where 后若又没 有 1=1 子句,则 SQL 中就会只剩下一个空的 where,SQL 出错。

所以,在 where 后,需要添加永为真子句 1=1,以防止这种情况的发生。但当数据量很大时,会严重影响查询效率。

使用<where/>标签,在有查询条件时,可以自动添加上 where 子句;没 有查询条件时,不会添加 where 子句。需要注意的是,第一个<if/>标签中的 SQL 片断,可以不包含 and。

不过,写上 and 也不错,系统会将多出的 and 去掉。但其它<if/>中 SQL 片断的 and,必须要求写上。否则 SQL 语句将拼接出错。

语法:<where> 其他动态 sql</where>

接口方法:

List<Student> selectStudentWhere(Student student);

 

mapper文件:


  
  1. <select id="selectStudentWhere"
  2. resultType="com.bjpowernode.domain.Student">
  3. select id,name,email,age from student
  4. <where>
  5. <if test="name != null and name !='' ">
  6. and name = #{name}
  7. </if>
  8. <if test="age > 0 ">
  9. and age &gt; #{age}
  10. </if>
  11. </where>
  12. </select>

测试方法:


  
  1. @Test
  2. public void testSelectWhere() throws IOException {
  3. Student param = new Student();
  4. param.setName("李力");
  5. param.setAge(18);
  6. List<Student> studentList = studentDao.selectStudentWhere(param);
  7. studentList.forEach( stu -> System.out.println(stu));
  8. }

动态 SQL 之 foreach

<foreach/>标签用于实现对于数组与集合的遍历。对其使用,需要注意:

  • collection 表示要遍历的集合类型, list ,array 等。
  • open、close、separator 为对遍历内容的 SQL 拼接。

语法:


  
  1. <foreach collection="集合类型" open="开始的字符" close="结束的字符"
  2. item="集合中的成员" separator="集合成员之间的分隔符">
  3. #{item 的值}
  4. </foreach>

1、遍历List<简单类型>

表达式中的 List 使用 list 表示,其大小使用 list.size 表示。

需求:查询学生 id 是 1002,1005,1006

接口方法:

List<Student> selectStudentForList(List<Integer> idList);
 

mapper文件:


  
  1. <select id="selectStudentForList"
  2. resultType="com.bjpowernode.domain.Student">
  3. select id,name,email,age from student
  4. <if test="list !=null and list.size > 0 ">
  5. where id in
  6. <foreach collection="list" open="(" close=")"
  7. item="stuid" separator=",">
  8. #{stuid}
  9. </foreach>
  10. </if>
  11. </select>

测试方法:


  
  1. @Test
  2. public void testSelectForList() {
  3. List<Integer> list = new ArrayList<>();
  4. list.add(1002);
  5. list.add(1005);
  6. list.add(1006);
  7. List<Student> studentList = studentDao.selectStudentForList(list);
  8. studentList.forEach( stu -> System.out.println(stu));
  9. }

2、遍历List<对象类型>

接口方法:

List<Student> selectStudentForList2(List<Student> stuList);
 

mapper文件:


  
  1. <select id="selectStudentForList2"
  2. resultType="com.bjpowernode.domain.Student">
  3. select id,name,email,age from student
  4. <if test="list !=null and list.size > 0 ">
  5. where id in
  6. <foreach collection="list" open="(" close=")"
  7. item="stuobject" separator=",">
  8. #{stuobject.id}
  9. </foreach>
  10. </if>
  11. </select>

测试方法:


  
  1. @Test
  2. public void testSelectForList2() {
  3. List<Student> list = new ArrayList<>();
  4. Student s1 = new Student();
  5. s1.setId(1002);
  6. list.add(s1);
  7. s1 = new Student();
  8. s1.setId(1005);
  9. list.add(s1);
  10. List<Student> studentList = studentDao.selectStudentForList2(list);
  11. studentList.forEach( stu -> System.out.println(stu));
  12. }

动态 SQL 之代码片段

<sql/>标签用于定义 SQL 片断,以便其它 SQL 标签复用。而其它标签使 用该 SQL 片断,需要使用<include/>子标签。该<sql/>标签可以定义 SQL 语句中的任何部分,所以<include/>子标签可以放在动态 SQL 的任何位置。

接口方法:

List<Student> selectStudentSqlFragment(List<Student> stuList);
 

mapper文件:


  
  1. <!--创建 sql 片段 id:片段的自定义名称-->
  2. <sql id="studentSql">
  3. select id,name,email,age from student
  4. </sql>
  5. <select id="selectStudentSqlFragment"
  6. resultType="com.bjpowernode.domain.Student">
  7. <!-- 引用 sql 片段 -->
  8. <include refid="studentSql"/>
  9. <if test="list !=null and list.size > 0 ">
  10. where id in
  11. <foreach collection="list" open="(" close=")"
  12. item="stuobject" separator=",">
  13. #{stuobject.id}
  14. </foreach>
  15. </if>
  16. </select>

测试方法:


  
  1. @Test
  2. public void testSelectSqlFragment() {
  3. List<Student> list = new ArrayList<>();
  4. Student s1 = new Student();
  5. s1.setId(1002);
  6. list.add(s1);
  7. s1 = new Student();
  8. s1.setId(1005);
  9. list.add(s1);
  10. List<Student> studentList = studentDao.selectStudentSqlFragment(list);
  11. studentList.forEach( stu -> System.out.println(stu));
  12. }


 

文章来源: tuomasi.blog.csdn.net,作者:托马斯-酷涛,版权归原作者所有,如需转载,请联系作者。

原文链接:tuomasi.blog.csdn.net/article/details/123607625

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。