• mybatis trim标签使用详解


    mybatis trim标签使用详解

    mybatis的trim标签一般用于去除sql语句中多余的and关键字,逗号,或者给sql语句前拼接 “where“、“set“以及“values(“ 等前缀,或者添加“)“等后缀,可用于选择性插入、更新、删除或者条件查询等操作。

    以下是trim标签中涉及到的属性:

    prefix=添加前缀 suffix=添加后缀

    prefixOverrides=去掉前缀 suffixOverrides=去掉后缀

    属性描述
    prefix给sql语句拼接的前缀
    suffix给sql语句拼接的后缀
    prefixOverrides去除sql语句前面的关键字或者字符,该关键字或者字符由prefixOverrides属性指定,假设该属性指定为"AND",当sql语句的开头为"AND",trim标签将会去除该"AND"
    suffixOverrides去除sql语句后面的关键字或者字符,该关键字或者字符由suffixOverrides属性指定

    一、使用trim标签去除多余的and关键字(和where对比)

    <select id="findActiveBlogLike"
         resultType="Blog">
      SELECT * FROM BLOG 
      WHERE 
      <if test="state != null">
        state = #{state}
      if> 
      <if test="title != null">
        AND title like #{title}
      if>
      <if test="author != null and author.name != null">
        AND author_name like #{author.name}
      if>
    select>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    如果这些条件没有一个能匹配上会发生什么?最终这条 SQL 会变成这样:

    SELECT * FROM BLOG
    WHERE
    
    • 1
    • 2

    这会导致查询失败。如果仅仅第二个条件匹配又会怎样?这条 SQL 最终会是这样:

    SELECT * FROM BLOG
    WHERE 
    AND title like 'someTitle'
    
    • 1
    • 2
    • 3

    你可以使用where标签来解决这个问题,where 元素只会在至少有一个子元素的条件返回 SQL 子句的情况下才去插入“WHERE”子句。而且,若语句的开头为“AND”或“OR”,where 元素也会将它们去除。

    <select id="findActiveBlogLike"
         resultType="Blog">
      SELECT * FROM BLOG 
      <where> 
        <if test="state != null">
             state = #{state}
        if> 
        <if test="title != null">
            AND title like #{title}
        if>
        <if test="author != null and author.name != null">
            AND author_name like #{author.name}
        if>
      where>
    select>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15

    trim标签也可以完成相同的功能,写法如下:

    <trim prefix="WHERE" prefixOverrides="AND">
    	<if test="state != null">
    	  state = #{state}
    	if> 
    	<if test="title != null">
    	  AND title like #{title}
    	if>
    	<if test="author != null and author.name != null">
    	  AND author_name like #{author.name}
    	if>
    trim>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    二、使用trim标签去除多余的逗号

    在这里插入图片描述
    如果红框里面的条件没有匹配上,sql语句会变成如下:

    INSERT INTO role(role_name,) VALUES(roleName,)
    
    • 1

    多出来多余的逗号,插入将会失败。
    使用trim标签可以解决此问题,只需做少量的修改,如下所示:
    在这里插入图片描述
    其中最重要的属性是

    suffixOverrides=","
    
    • 1

    表示去除sql语句结尾多余的逗号.

    同时,为了更明确trim的几个属性的关系 ,如下两个xml是等价的

    <insert id="insertSelective">
       insert into BZ_EVENTINFOGS
       (
          <if test="eventinfoid != null">
            EVENTINFOID,
          if>
          <if test="eventinfoname != null">
            EVENTINFONAME,
          if>
       )
       values (
          <if test="eventinfoid != null">
            #{eventinfoid,jdbcType=VARCHAR},
          if>
          <if test="eventinfoname != null">
            #{eventinfoname,jdbcType=VARCHAR},
          if>
       )
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18

    等价于

    <insert id="insertSelective">
       insert into BZ_EVENTINFOGS
       <trim prefix="(" suffix=")" suffixOverrides=",">
          <if test="eventinfoid != null">
            EVENTINFOID,
          if>
          <if test="eventinfoname != null">
            EVENTINFONAME,
          if>
       <trim prefix="values (" suffix=")" suffixOverrides=",">
          <if test="eventinfoid != null">
            #{eventinfoid,jdbcType=VARCHAR},
          if>
          <if test="eventinfoname != null">
            #{eventinfoname,jdbcType=VARCHAR},
          if>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    即开头所述:

    prefix=添加前缀 suffix=添加后缀

    prefixOverrides=去掉前缀 suffixOverrides=去掉后缀

  • 相关阅读:
    Springboot给每个接口设置traceId,并添加到返回结果中
    AlmaLinux (兼容centos)安装Geant4与ROOT
    突如其来的第一个1024要笑着过
    启动 Nginx.exe出现闪退的问题
    【论文阅读】2736. 最大和查询-2023.11.17
    vue中使用唯一标识uuid——uuid.v1()-时间戳、uuid.v4()-随机数
    车险全险包括什么
    前后端交互案例,图书管理系统
    【测试面经】软件测试面试题大全,软件测试必问必背面试题,敢说会70%就可以轻松拿offer......
    【2024最新】Spring面试题
  • 原文地址:https://blog.csdn.net/qq_27480007/article/details/130894678