当前位置:   article > 正文

mybatis中Insert语句如何返回插入的主键_mybatis insert 返回主键

mybatis insert 返回主键

方法一:

mapper.java

  1. /**
  2. * 添加部门
  3. * @param department
  4. * @return
  5. */
  6. Integer insertDep(Department department);

xml

  1. <insert id="insertDep" parameterType="com.example.pojo.entity.Department">
  2. <selectKey keyProperty="departmentId" order="AFTER" resultType="java.lang.Integer ">
  3. select LAST_INSERT_ID()
  4. </selectKey>
  5. insert into sys_department(name,parentId,enabled,isParent)
  6. VALUES(#{name},#{parentId},1,0)
  7. </insert>

其中:

selectKey标签:将插入到数据库的某条记录的主键,返回到指定对象(user)对应属性中。
keyProperty:  指定返回的主键,存储在对象中(user)的哪个属性
order:相对于insert语句,selectKey标签中的sql的执行顺序。由于mysql的自增原理,执行完insert语句之后才将主键生成,所以这里selectKey的执行顺序为after。
resultType:  返回的主键对应的JAVA类型
LAST_INSERT_ID():  是mysql的函数,返回auto_increment自增列新记录id值。

 方法二

使用:

useGeneratedKeys="true" keyProperty="departmentId"
  1. <insert id="insertDep" parameterType="com.example.pojo.entity.Department" useGeneratedKeys="true" keyProperty="departmentId">
  2. insert into sys_department(departmentId,name,parentId,enabled,isParent)
  3. VALUES(uuid(),#{name},#{parentId},1,0)
  4. </insert>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/241367
推荐阅读
相关标签
  

闽ICP备14008679号