mybatis的insert返回主键
Posted 玉曲风
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis的insert返回主键相关的知识,希望对你有一定的参考价值。
- <insert id="insert" useGeneratedKeys="true" keyProperty="id" parameterType="com.model.OperationBookList" >
- insert into operation_book_list (id, name, introduce,
- category, state, up_date,
- stop_date, down_date, modify_date
- )
- values (#{id,jdbcType=BIGINT}, #{name,jdbcType=VARCHAR}, #{introduce,jdbcType=VARCHAR},
- #{category,jdbcType=VARCHAR}, #{state,jdbcType=CHAR}, #{upDate,jdbcType=TIMESTAMP},
- #{stopDate,jdbcType=TIMESTAMP}, #{downDate,jdbcType=TIMESTAMP}, #{modifyDate,jdbcType=TIMESTAMP}
- )
- </insert>
在insert属性里增加useGeneratedKeys="true" keyProperty="id"
以上是关于mybatis的insert返回主键的主要内容,如果未能解决你的问题,请参考以下文章
mybatis insert 返回主键 的before 和after的区别