用MyBatis进行批量插入时:
语句
<selectKey resultType="java.lang.Long" keyProperty="Id" order="AFTER">
SELECT LAST_INSERT_ID()
</selectKey>
只适用于单条记录插入时返回主键到实体的id字段上
如果想要批量插入后返回所有主键到插入实体的id字段上, 需要在insert上加上useGeneratedKeys和keyProperty,如下所示:
<insert id="insertBatch" useGeneratedKeys="true" keyProperty="id">
</insert>
而且,这个insert里面不能再加上面的selectKey语句,否则还是全部不返回主键
网上有说采用useGeneratedKeys和keyProperty进行批量插入返回主键时,对应的Dao不能用@Param来给批量插入的list取别名
也就是说必须用成
<insert id="insertBatch" parameterType="java.util.List" useGeneratedKeys="true" keyProperty="id">
</insert>
这可能是低版本的要求,至少我用myBatis 3.4.1版时,用@Param而省去parameterType="java.util.List"
也是一样能批量返回主键