Mybatis 动态insert语句

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

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

id="insertSelective" parameterType="com.bootdo.system.domain.LogDO">
    insert into sys_log
    "(" 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>
    
    "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>
    
  

你可能感兴趣的:(mybatis)