赞
踩
观察某张表的数据时,发现设置了自增属性的AutoId,在插入数据后并不是自增的,而是数值跳跃着增加的。
在确认AutoId的自增属性设置没有问题后,开始怀疑是不是insert语句的问题,insert语句是MyBatis Generator自动生成的,示例如下:
- <insert id="insert" parameterType="com.xx.yy.datasource.domain.User" >
- <selectKey resultType="java.lang.Long" keyProperty="autoId" order="BEFORE" >
- SELECT LAST_INSERT_ID()
- </selectKey>
- insert into User (AutoId, UserId, Mobile, Username, CreateTime, LastModifyTime)
- values (#{autoId,jdbcType=BIGINT}, #{userId,jdbcType=BIGINT}, #{mobile,jdbcType=VARCHAR},
- #{username,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{lastModifyTime,jdbcType=TIMESTAMP}
- )
- </insert>
insert into 语句在语法上是没有问题的,那缩小排查范围,就是selectKey的用法可能有问题!
SelectKey需要注意order属性,像MySQL一类支持自动增长类型的数据库中,order需要设置为after才会取到正确的值,像Oracle这样取序列的情况,需要设置为before。
在上面示例的insert用法中,就是order属性设置成了BEFORE才导致自增属性没有生效。改成AFTER后,主键就开始自增了。
更多内容欢迎关注个人微信公众号,一起成长!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。