mybatis主键回填和自定义
Posted 游浪踏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis主键回填和自定义相关的知识,希望对你有一定的参考价值。
主键回填
insert配置字段:
id:和命名空间组合作为唯一标识
keyProperty:主键列名,联合组建则以分号分隔
useGeneratedKeys:是否内部生成主键
keyColumn:主键是第几列
例子:(role有id,roleName,note三个属性)
<insert id="insertRole" parameterType="role" useGeneratedKeys="true"
keyProperty="id">
insert into t_role (role_name,note) values (#{roleName},#{note})
</insert>
自定义
<insert id="insertRole" parameterType="role" useGeneratedKeys="true"
keyProperty="id">
<selectKey keyProperty="id" resultType="int" order=""BEFORE>
select if(max(id) is null,1,max(id)+2) as newId from t_role
</selectKey>
insert into t_role (id,role_name,note) values (#{id},#{roleName},#{note})
</insert>
以上是关于mybatis主键回填和自定义的主要内容,如果未能解决你的问题,请参考以下文章