1. 程式人生 > 實用技巧 >mybatis 批量插入返回自增ID

mybatis 批量插入返回自增ID

如果批量插入需要返回自增ID,需要滿足4個條件:

  1. mybatis的版本需要在3.3.1以上
  2. batchInsert方法引數中不能含有@param註解
  3. batchInsert方法引數中只能有一個引數,那就是需要插入的List
  4. batchInsert的返回值不能是List

下面說給出一個例子:

/**
 * @author: dwtfukgv
 * @version: 1.0
 * @date: 2020/12/29 8:42 下午
 */
public interface QuestionDiyMapper {

    /**
     * 批量插入
     * @param list 需要插入的PO
     */
    void batchInsert(List<QuestionPO> list);
}

<insert id="batchInsert"  keyColumn="id" keyProperty="id" parameterType="java.util.List" useGeneratedKeys="true">
  insert into `tb_net_course_question` (
  course_id, description
  ) values
  <foreach collection="list" item="item" separator=",">
    (#{item.courseId,jdbcType=BIGINT}, #{item.description,jdbcType=LONGVARCHAR})
  </foreach>
</insert>

上面的keyColumn是資料庫中對應的欄位名稱,keyProperty是實體類中對應的欄位名稱