zoukankan      html  css  js  c++  java
  • Mybatis 动态insert语句

    mybatis的一个比较先进的思想是把Sql语句写在了配置xml文件(也支持注解),通过配置文件的方式,免去了一般软件开发的硬编码,当业务需求改变的时候,只需要更改sql语句即可!

    下面是个人在学习mybatis动态insert语句的笔记,留着参考!
    在写insert子句的时候,由于不知道需要插入多少字段,mybatis通过prefix,suffix,suffixOverrides很好的解决了该问题,实现了动态insert语句。

    <insert id="insertSelective" parameterType="com.bootdo.system.domain.LogDO">
    insert into sys_log
    <trim prefix="(" suffix=")" suffixOverrides=",">
    <if test="id != null">
    id,
    </if>
    <if test="userId != null">
    user_id,
    </if>
    <if test="username != null">
    username,
    </if>
    <if test="operation != null">
    operation,
    </if>
    <if test="time != null">
    time,
    </if>
    <if test="method != null">
    method,
    </if>
    <if test="params != null">
    params,
    </if>
    <if test="ip != null">
    ip,
    </if>
    <if test="gmtCreate != null">
    gmt_create,
    </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides=",">
    <if test="id != null">
    #{id,jdbcType=BIGINT},
    </if>
    <if test="userId != null">
    #{userId,jdbcType=BIGINT},
    </if>
    <if test="username != null">
    #{username,jdbcType=VARCHAR},
    </if>
    <if test="operation != null">
    #{operation,jdbcType=VARCHAR},
    </if>
    <if test="time != null">
    #{time,jdbcType=INTEGER},
    </if>
    <if test="method != null">
    #{method,jdbcType=VARCHAR},
    </if>
    <if test="params != null">
    #{params,jdbcType=VARCHAR},
    </if>
    <if test="ip != null">
    #{ip,jdbcType=VARCHAR},
    </if>
    <if test="gmtCreate != null">
    #{gmtCreate,jdbcType=TIMESTAMP},
    </if>
    </trim>
    </insert>

  • 相关阅读:
    Java8新特性学习笔记(一) Lambda表达式
    android游戏动画特效的一些处理
    start from here
    感知机回归
    2020/2/21
    梯度下降
    凸优化
    批量归一化和残差网络
    Momentum
    词嵌入基础
  • 原文地址:https://www.cnblogs.com/lywJ/p/10309043.html
Copyright © 2011-2022 走看看