说明:
有2张表:
brand(品牌表):id(品牌id)、name (品牌name);
product(商品表):id(商品id)、name (商品name)、brandId(品牌id);
其中品牌id在数据库中为自增,且为product的外键。
在service层做添加一个全新的品牌商品进行事务处理时,需要先添加品牌brand,再获取新添加品牌的id,再添加商品。
在使用mybatis时,可使用以下方式获取新增的品牌id。
<insert id="addBrand" parameterType="Brand">
<selectKey resultType="java.lang.Integer" order="AFTER" keyProperty="id">
select LAST_INSERT_ID() as id
</selectKey>
insert into brand(id,name) values (#{id},#{name})
</insert>
selectKey中order属性的值是不同的:
BEFORE先选择主键,设置keyProperty的值然后执行插入语句。
AFTER是先执行插入语句,然后执行selectKey。
或者使用
<insert id="addProduct" parameterType="Product" useGeneratedKeys="true" keyProperty="id">
insert into brand(id,name) values (#{id},#{name})
</insert>
mybatis的insert返回的是受影响的记录行数,要得到ID,需要用insert(Object obj)的参数得到,如obj.getId()。
如在本次Brand中,即为brand.getId()获取自增的brand的id值;
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦