MyBatis如何获取自动生成的主键id
MySQL:Mapper 文件 insert 语句设置
useGeneratedKeys="true" keyProperty="id"
Oracle:Mapper 文件 insert 语句增加
<selectKey keyProperty="id" order="BEFORE" resultType="Integer">
select xxx_SEQ.nextval from dual
</selectKey>
MySQL:Mapper 文件 insert 语句设置
useGeneratedKeys="true" keyProperty="id"
Oracle:Mapper 文件 insert 语句增加
<selectKey keyProperty="id" order="BEFORE" resultType="Integer">
select xxx_SEQ.nextval from dual
</selectKey>