Mybatis中动态sql小结(mybatis应用动态sql解决了什么问题)
sinye56 2024-09-19 02:21 10 浏览 0 评论
什么是动态sql
- MyBatis 的强大特性之一便是它的动态 SQL,它极大的简化了我们拼接SQL的操作。
- 动态 SQL 元素和使用 JSTL 或其他类似基于 XML 的文本处理器相似。
- MyBatis 采用功能强大的基于 OGNL 的表达式来消除其他元素:
- if
- choose (when, otherwise)
- trim (where, set)
- foreach
if条件判断
- 查询学生,查询条件中携带了哪个字段,就把字段拼接上
<!-- 查询条件中携带了哪个字段,就把字段拼接上 --> <!-- public List<Student>ListStudentByCondition(Student student) ; --> <select id="ListStudentByCondition" resultType="com.cn.cmc.bean.Student" > select * from student where <!-- test:OGNL表达式 从参数中取值 遇到特殊字符应用转义字符:见下图 --> <if test="id!=null"> id = #{id} </if> <if test="name!=null and name.trim()!=''"> and name = #{name} </if> <if test="age!=null && age!="""> and age = #{age} </if> <if test="sex=='M' or sex=='F'" > and trim(sex) = #{sex} </if> </select> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
- 转义字符表:
注:char类型查询时判断条件不正确的问题
特别注意:我使用的是ORACLE,性别字段为char长度为2,Mybatis在查出数据后会自动的将char的长度补为2得到的就是’F ‘(有一个空格),因此导致sex=#{sex}的判断结果不正确,解决办法就是在查出数据之后使用trim()方法去掉多余的空格。
问题:如上所述,可以使用if方法进行判断,符合条件的进行拼接,但也会出现问题,如果第一个字段为空的话就会导致字符串拼接失败造成如下结果:
### SQL: select * from student where and trim(sex) = ? ### Cause: java.sql.SQLSyntaxErrorException: ORA-00936: 缺失表达式 1 2
那么怎么解决这个问题呢?
- 解决方式一:(给where加上永真条件1=1,之后全用and连接)
<select id="ListStudentByCondition" resultType="com.cn.cmc.bean.Student" > select * from student where 1=1 <!-- test:OGNL表达式 从参数中取值 遇到特殊字符应用转义字符:见下图 --> <if test="id!=null"> and id = #{id} </if> <if test="name!=null and name.trim()!=''"> and name = #{name} </if> <if test="age!=null && age!="""> and age = #{age} </if> <if test="sex=='M' or sex=='F'" > and trim(sex) = #{sex} </if> </select> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
- 解决方式二:(使用where标签)
<select id="ListStudentByCondition" resultType="com.cn.cmc.bean.Student" > select * from student <where> <if test="id!=null"> and id = #{id} </if> <if test="name!=null and name.trim()!=''"> and name = #{name} </if> <if test="age!=null && age!="""> and age = #{age} </if> <if test="sex=='M' or sex=='F'" > and trim(sex) = #{sex} </if> </where> </select> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Trim字符串拼接
以上问题还可以使用trim字符串拼接来解决问题。
- 解决方式三:使用trim标签拼接
<select id="ListStudentByConditionTrim" resultType="com.cn.cmc.bean.Student" > <!-- trim标签拼接字符串 prefix:给拼串后的字符串加上一个前缀 prefixOverrides:去掉拼串后的字符串的一个前缀 suffix:给拼串后的字符串加上一个后缀 suffixOverrides:去掉拼串后字符串的一个前缀 set标签:在更新中使用,可以去除多余的逗号 --> select * from student <trim prefix="where" prefixOverrides="and" suffix="" suffixOverrides=""> <if test="id!=null"> and id = #{id} </if> <if test="name!=null and name.trim()!=''"> and name = #{name} </if> <if test="age!=null && age!="""> and age = #{age} </if> <if test="sex=='M' or sex=='F'" > and trim(sex) = #{sex} </if> </trim> </select> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
- bind标签的使用,按名字模糊查询学生
- bind 元素可以从 OGNL 表达式中创建一个变量并将其绑定到元素中方便使用
<!-- 按名字模糊查询学生,假设在接口中有方法public Student getStudentByName(@Param("name")String name) ; bind标签:将OGNL表达式绑定到指定变量中 name:绑定的变量名 value:OGNL表达式 --> <select id="getStudentByName" resultType="com.cn.cmc.bean.Student"> <bind name="_name" value="'%'+name+'%'"/> select * from student where name like #{_name} </select> 1 2 3 4 5 6 7 8 9 10 11
choose(选择分支)
- 查询学生,要求传入什么字段按什么字段来查
<!-- choose, when, otherwise查询学生,有哪个字段按哪个字段查 --> <!-- choose分支选择器:类似于switch-case-default的用法 when:判断进入那个分支类似于case otherwise:当所有情况都不匹配时,执行的操作 --> <select id="ListStudentByConditionChoose" resultType="com.cn.cmc.bean.Student"> select * from student <where> <choose> <when test="id!=null"> id = #{id} </when> <when test="name!=null and name!=''"> name = #{name} </when> <when test="sex=='F' or sex=='M'"> trim(sex) = #{sex} </when> <when test="age!=0"> age = #{age} </when> <otherwise> 1=1 </otherwise> </choose> </where> </select> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
注:choose一次只能选择一条分支
特别注意:在设计的时候,Student的age字段我使用int这个类型,这是不合理的,因为java中默认int的属性为0,造成判断的时候age永不为空,应用Integer类型
foreach集合遍历
动态 SQL 的另外一个常用的必要操作是需要对一个集合进行遍历,通常是在构建 IN 条件语句的时候。
- 按id条件构建In来查出学生
<!-- foreach集合的遍历,通常是构建in条件语句的时候使用 collection:指定遍历的集合名: Mybatis会将传入的list封装到map中,map中的键就是list 也可以用注解@param("")决定所封装的别名 item:将当前遍历的对象取一个名方便调用,调用方法#{对象名} index:若遍历的对象是list时,index就表示list的索引,item表示当前的值 若遍历的对象是一个map的时候,index表示map的key,item表示map的value open:遍历的开始符 close:遍历的结束符 separator:表示遍历元素之间的分隔符 --> <select id="ListStudentByConditionForeach" resultType="com.cn.cmc.bean.Student"> select * from student <foreach collection="list" item="item_id" open="where id in(" close=")" separator=","> #{item_id} </foreach> </select> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
- 批量保存学生
- 相关SQL语句为:
begin insert into student(id,name,sex,age) values(?,?,?,?); insert into student(id,name,sex,age) values(?,?,?,?); end ; 1 2 3 4 5 6 7 8
- 在Mybatis中这样配置
<!-- 批量插入学生 --> <insert id="addAllStudent" parameterType="com.cn.cmc.bean.Student"> <foreach collection="students" item="std_item" open="begin" close="end;" separator=""> insert into student(id,name,sex,age) values (student_seq.nextval,#{std_item.name},#{std_item.sex},#{std_item.age}); </foreach> </insert>
相关推荐
- Linux两种光驱自动挂载的方法
-
环境:CentOS6.4西昆云服务器方式一修改fstab文件/etc/fstab是系统保存文件系统信息?静态文件,每一行描述一个文件系统;系统每次启动会读取此文件信息以确定需要挂载哪些文件系统。参...
- linux系统运维,挂载和分区概念太难?在虚机下操作一次全掌握
-
虚拟机的好处就是可以模拟和学习生产环境的一切操作,假如我们还不熟悉磁盘操作,那先在虚机环境下多操作几次。这次来练习下硬盘扩容操作。虚拟机环境:centos8vm11linux设备命名规则在linux中...
- Linux 挂载 NFS 外部存储 (mount 和 /etc/fstab)
-
mount:手工挂载,下次重启需再重新挂载,操作命令:mount-tnfs-ooptionsserver:/remote/export/local/directory上面命令中,本地目录...
- 在Linux中如何设置自动挂载特定文件系统(示例)
-
Linux...
- Linux环境中的绑定挂载(bind mount)
-
简介:Linux中的mount命令是一个特殊的指令,主要用于挂载文件目录。而绑定挂载(bindmount)命令更为特别。mount的bind选项将第一个目录克隆到第二个。一个目录中的改变将会在...
- Linux挂载CIFS共享 临时挂载 1. 首先
-
如何解决服务器存储空间不足的问题?大家好,欢迎回来。在上一期视频中,我为大家介绍了如何利用Linux挂载来扩容服务器存储空间。这一期视频,我将以Linux为例,教大家如何进行扩容。群辉使用的是Linu...
- Linux 硬盘挂载(服务器重启自动挂载)
-
1、先查看目前机器上有几块硬盘,及已挂载磁盘:fdisk-l能够查看到当前主机上已连接上的磁盘,以及已经分割的磁盘分区。(下面以/dev/vdb磁盘进行分区、挂载为例,挂载点设置为/data)df...
- linux 挂载磁盘
-
在Linux中挂载硬盘的步骤如下:...
- 笨小猪教您Linux磁盘挂载
-
本教程针对Linux系统比较熟悉或者想学习Linux基础的用户朋友,本教程操作起来比较傻瓜式,跟着步骤就会操作,本文使用的工具是XShell同时多多注意空格(文中会有提示)。【问答】什么是磁盘挂载?答...
- Linux 磁盘挂载和docker安装命令
-
本篇给大家介绍Linux磁盘挂载和docker安装的相关内容,Linux服务器的操作是一个手熟的过程,一些不常用的命令隔断时间就忘记了,熟话说好记性不如烂笔头,还需在平时的工作中多练习记录。...
- Linux设置开机自动挂载分区
-
有时候,我们在安装完Linux系统之后,可能在使用过程中添加硬盘或者分区进行使用,这时候就需要手动把磁盘分区挂载到某个路径,但是开机之后就会消失,需要重新挂载,非常麻烦,那么我们应该如何设置开机自动挂...
- 在linux挂载一个新硬盘的完整步骤
-
以下是在Linux中挂载新原始磁盘的完整步骤,包括分区、创建文件系统以及使用UUID在/etc/fstab中启动时挂载磁盘:将新的原始磁盘连接到Linux系统并打开电源。运行以下命令,...
- Linux系统如何挂载exFAT分区
-
简介:Linux系统中不能像Windows系统那样自动识别加载新设备,需要手动识别,手动加载。Linux中一切皆文件。文件通过一个很大的文件树来组织,文件树的根目录是:/,从根目开始录逐级展开。这些文...
- Linux系统挂载硬盘
-
fdisk-l查看可挂载的磁盘都有哪些df-h查看已经挂载的磁盘...
- WSL2发布,如何在Win10中挂载Linux文件系统
-
WSL2是最新版本的架构,它为Windows子系统提供支持,使其能够在Windows上运行ELF64Linux二进制文件。通过最近的更新,它允许使用Linux文件系统访问存储在硬盘中的文件。如果你...
你 发表评论:
欢迎- 一周热门
- 最近发表
- 标签列表
-
- oracle忘记用户名密码 (59)
- oracle11gr2安装教程 (55)
- mybatis调用oracle存储过程 (67)
- oracle spool的用法 (57)
- oracle asm 磁盘管理 (67)
- 前端 设计模式 (64)
- 前端面试vue (56)
- linux格式化 (55)
- linux图形界面 (62)
- linux文件压缩 (75)
- Linux设置权限 (53)
- linux服务器配置 (62)
- mysql安装linux (71)
- linux启动命令 (59)
- 查看linux磁盘 (72)
- linux用户组 (74)
- linux多线程 (70)
- linux设备驱动 (53)
- linux自启动 (59)
- linux网络命令 (55)
- linux传文件 (60)
- linux打包文件 (58)
- linux查看数据库 (61)
- linux获取ip (64)
- 关闭防火墙linux (53)