原以为新增完成后会自动返回新增的id,测试几次后都是返回1。原来操作成功后返回的是受影响的行数而不是id。
在xml配置中Mybatis想要获取自增的id主要有两种方式
第一种
<!--
keyProperty="id" id为实体类对应的属性,执行完成后自增id会赋值到此属性
-->
<insert id="addGoods" keyProperty="id" useGeneratedKeys="true">
insert into sys_goods
</insert>
第二种
<insert id="addGoods">
<!--
keyProperty="id" id为实体类对应的属性,执行完成后自增id会赋值到此属性
order="AFTER" 如果设置为 BEFORE,那么它会首先选择主键,设置 keyProperty 然后执行插入语句。如果设置为 AFTER,那么先执行插入语句,然后是 selectKey 元素
-->
<selectKey resultType="java.lang.Integer" order="AFTER" keyProperty="id">
select LAST_INSERT_ID()
</selectKey>
insert into sys_goods
</insert>
调用方式
Goods goods = new Goods();
//添加商品
gs.addGoods(goods);
//获取自增id
goods.getId()
需要注意这两种方式Mapper接口方法接收参数的地方都不要使用@Param
注解。
Integer addGoods(Goods goods); //可以正常获取自增id
Integer addGoods(@Param("goods") Goods goods); //第一种方式会报参数错误,第二种方式不会报错但一直为null