文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

mybatis的where标签怎么使用

2023-06-29 08:47

关注

本篇内容主要讲解“mybatis的where标签怎么使用”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“mybatis的where标签怎么使用”吧!

我们经常在动态构造sql时,为防止注入或防止语句不当时会使用where 1=1

<select id="selectGroupByEmployeeNum" resultMap="BaseResultMap" parameterType="com.dao.impl.ZcChatGroup">    select        *    from         zc_chat_group     WHERE 1=1    <if test="id!=null">        id= #{id}     </if>    <if test="leaderNum!=null">        and leader_num = #{leaderNum}     </if>    <if test="groupType!=null">        and group_type = #{groupType}     </if>  </select>

 但在使用where标签可以简化这条语句

<select id="selectGroupByEmployeeNum" resultMap="BaseResultMap" parameterType="com.dao.impl.ZcChatGroup">    select        *    from         zc_chat_group     <where>        <if test="id!=null">            id= #{id}         </if>        <if test="leaderNum!=null">            and leader_num = #{leaderNum}         </if>        <if test="groupType!=null">            and group_type = #{groupType}         </if>    </where>  </select>

这条sql执行时,如果id这个参数为null,则这条语句的执行结果为

select * from zc_chat_group where leader_num = ‘xx' and group_type = ‘xx'

这个&lsquo;where&rsquo;标签会知道如果它包含的标签中有返回值的话,它就会插入一个&lsquo;where&rsquo;。此外,如果标签返回的内容是以AND 或OR开头的,则会把它去除掉。

Mybatis where标签的使用

为了能达到MySQL性能的调优,我们可以基于Mybatis的where标签来进行实现。where标签是顶层的遍历标签,需要配合if标签使用,单独使用无意义。通常有下面两种实现形式。

方式一:

  <select id="selectSelective" resultType="com.secbro.entity.User">    select * from t_user    <where>      <if test="username != null and username != ''">        username = #{username}      </if>      <if test="idNo != null and idNo != ''">        and id_no = #{idNo}      </if>    </where>  </select>

方式二:

  <select id="selectSelective" resultType="com.secbro.entity.User">    select * from t_user    <where>      <if test="username != null and username != ''">        and username = #{username}      </if>      <if test="idNo != null and idNo != ''">        and id_no = #{idNo}      </if>    </where>  </select>

仔细观察会发现,这两种方式的区别在于第一if条件中的SQL语句是否有and。

这里就涉及到where标签的两个特性:

所以说,上面的两种写法都是可以了,Mybatis的where标签会替我们做一些事情。
但需要注意的是:where标签只会 智能的去除(忽略)首个满足条件语句的前缀。所以建议在使用where标签时,每个语句都最好写上 and 前缀或者 or 前缀,否则像以下写法就会出现问题:

  <select id="selectSelective" resultType="com.secbro.entity.User">    select * from t_user    <where>      <if test="username != null and username != ''">        username = #{username}      </if>      <if test="idNo != null and idNo != ''">        id_no = #{idNo}      </if>    </where>  </select>

生成的SQL语句如下:

select * from t_user      WHERE username = ?  id_no = ?

很显然,语法是错误的。
因此,在使用where标签时,建议将所有条件都添加上and或or;

进阶:自定义trim标签

上面使用where标签可以达到拼接条件语句时,自动去掉首个条件的and或or,那么如果是其他自定义的关键字是否也能去掉呢?
此时,where标签就无能为力了,该trim标签上场了,它也可以实现where标签的功能。

  <select id="selectSelective" resultType="com.secbro.entity.User">    select * from t_user    <trim prefix="where" prefixOverrides="and | or ">      <if test="username != null and username != ''">        and username = #{username}      </if>      <if test="idNo != null and idNo != ''">        and id_no = #{idNo}      </if>    </trim>  </select>

将上面基于where标签的写改写为trim标签,发现执行效果完全一样。而且trim标签具有了更加灵活的自定义性。

where语句的坑

另外,在使用where语句或其他语句时一定要注意一个地方,那就是:注释的使用。
先来看例子:

  <select id="selectSelective" resultType="com.secbro.entity.User">    select * from t_user    <where>      <if test="username != null and username != ''">        and username = #{username}      </if>      <if test="idNo != null and idNo != ''">                and id_no = #{idNo}      </if>    </where>  </select>

上述SQL语句中添加了 的注释,生成的SQL语句为:

select * from t_user WHERE username = ?  and id_no = ?

执行时,直接报错。

还有一个示例:

  <select id="selectSelective" resultType="com.secbro.entity.User">    select * from t_user    <where>      <if test="username != null and username != ''">        -- and username = #{username}        and username = #{username}      </if>      <if test="idNo != null and idNo != ''">        and id_no = #{idNo}      </if>    </where>  </select>

生成的SQL语句为:

select * from t_user WHERE -- and username = ? and username = ? and id_no = ?

同样会导致报错。

这是因为我们使用 XML 方式配置 SQL 时,如果在 where 标签之后添加了注释,那么当有子元素满足条件时,除了 < !-- --> 注释会被 where 忽略解析以外,其它注释例如 // 或 或 -- 等都会被 where 当成首个子句元素处理,导致后续真正的首个 AND 子句元素或 OR 子句元素没能被成功替换掉前缀,从而引起语法错误。
同时,个人在实践中也经常发现因为在XML中使用注释不当导致SQL语法错误或执行出错误的结果。强烈建议,非必要,不要在XML中注释掉SQL,可以通过版本管理工具来追溯历史记录和修改。

到此,相信大家对“mybatis的where标签怎么使用”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯