我是mybatis的新手。我正在尝试获取最后插入的记录的 id。我的数据库是 mysql,我的映射器 xml 是
<insert id="insertSelective" parameterType="com.mycom.myproject.db.mybatis.model.FileAttachment" >
<selectKey resultType="java.lang.Long" keyProperty="id" order="AFTER" >
SELECT LAST_INSERT_ID() as id
</selectKey>
insert into fileAttachment
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="name != null" >
name,
</if>
<if test="attachmentFileSize != null" >
size,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="name != null" >
#{name,jdbcType=VARCHAR},
</if>
<if test="attachmentFileSize != null" >
#{attachmentFileSize,jdbcType=INTEGER},
</if>
</trim>
</insert>
我认为这里写的语句'SELECT LAST_INSERT_ID() as id'应该返回最后插入记录的id,但插入记录后我总是得到1。
我的 mapper.java 类我有方法
int insertSelective(FileAttachment record);
在我正在使用的 dao 课程中
int id = fileAttachmentMapper.insertSelective(fileAttachment);
插入新记录时,我得到的 Id 值始终为 1。我的 Id 字段自动递增,并且记录正确插入。