PostgreSQL使用MyBatis,insert时返回主键

Posted 桔子在路上

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PostgreSQL使用MyBatis,insert时返回主键相关的知识,希望对你有一定的参考价值。

MyBatis中普通的insert语句是这样的:

 <insert id="insert" parameterType="com.xxx.xxx.xxDo">
    insert into "table_name" (key, value)
    values (#{key,jdbcType=VARCHAR}, #{value,jdbcType=VARCHAR})
 </insert>

此时Dao接口的public Integer insert(DatabaseObject do);返回的Integer是收到改动的行数,插入成功时返回1

主键默认是由数据库自己加入的,可以使用selectKey的子查询语句获得

但PostgreSQL为serial字段生成的sequence名字为: 表名_列名_seq,但是这个序列并不能单独访问

所以这个方法需要进行一些修改,这里还是使用最简便的方式:

给insert语句添加useGeneratedKeys="true" keyProperty="id"

 <insert id="insert" parameterType="com.xxx.xxx.xxDo" useGeneratedKeys="true" keyProperty="id">
    insert into "table_name" (key, value)
    values (#{key,jdbcType=VARCHAR}, #{value,jdbcType=VARCHAR})
 </insert>

useGeneratedKeys让MyBatis来分配主键id,keyProperty用于在主键名不是id时指定主键名

此时MyBatis会将分配的主键加入insert的传参do中,通过do自带的getId就可以返回主键了

在server层中使用

public Integer insert(DatabaseObject xxDo){
  if(MyBatisDao.insert(xxDo) > 0){ return xxDo.getId(); } else{ return 0; } }

 


以上是关于PostgreSQL使用MyBatis,insert时返回主键的主要内容,如果未能解决你的问题,请参考以下文章

使用mybatis中的自定义TypeHandler处理PostgreSQL中的Json类型字段

PostgreSQL Upsert 用于几乎相似的值

PostgreSQL使用MyBatis,insert时返回主键

PostgreSQL 的 distinct on 的理解

PostgreSQL自增主键的用法以及在mybatis中的使用

Mybatis调用PostgreSQL存储过程实现数组入参传递