一、MyBatis插入返回主键
在使用MyBatis做持久层时,insert语句默认是不返回记录的主键值,而是返回插入的记录条数;如果业务层需要得到记录的主键时,可以通过配置的方式来完成这个功能。
针对Sequence主键而言,在执行insert sql前必须指定一个主键值给要插入的记录,如Oracle、DB2,可以采用如下配置方式:
<insert id="addOracle" parameterType="Student">针对自增主键的表,在插入时不需要主键,而是在插入过程自动获取一个自增的主键,比如MySQL,可以采用如下两种配置方式:
<selectKey resultType="java.lang.Integer" order="BEFORE" keyProperty="id">
select seq_t_student .nextval from dual
</selectKey>
insert into t_student(id,name)
values(#{id},#{name})
</insert>
1.返回主键方式
<insert id="add" parameterType="Student">2.设置useGeneratedKeys="true"属性方式
<selectKey resultType="java.lang.Integer" order="AFTER" keyProperty="id">
SELECT LAST_INSERT_ID() AS id
</selectKey>
insert into t_student(name)
values(#{name})
</insert>
<insert id="add1" parameterType="Student" useGeneratedKeys="true" keyProperty="id">说明:本人于ITEYE创建于2014年,现转移到CSDN
insert into t_student(name)
values(#{name})
</insert>