mybatis中(Oracle)关于insert时主键自动加1的使用方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis中(Oracle)关于insert时主键自动加1的使用方法相关的知识,希望对你有一定的参考价值。
<insert id="insert" paramType="User">
<selecKey keyProperty="id" order="BEFORE" resultType="int">
select user_sequence.nextval form dual
</selectKey>
</insert>
上述属性介绍:
keyProperty=“id” :类中的属性
order:生成策略:(insert into 执行之前还是之后):默认是执行之后
user_sequence:Oracle中的序列
创建序列:
create sequence user_sequence
start with 1
increment by 1
nomaxvalue
minvalue 1
nocycle
cache 10;
以上是关于mybatis中(Oracle)关于insert时主键自动加1的使用方法的主要内容,如果未能解决你的问题,请参考以下文章
mybatis + oracle insert clob,出现ORA-01461:仅能绑定要插入LONG列的LONG值