码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis中useGeneratedKeys和keyProperty的使用

时间:2019-05-22 19:09:05      阅读:305      评论:0      收藏:0      [点我收藏+]

标签:获取   使用   col   style   create   设置   模型   get   ted   

领域模型主键属性是shopId,使用JDBC的getGenereatedKeys方法获取主键并赋值到keyProperty设置的领域模型shopId属性中,
配置参考如下:
<insert id="insert" parameterType="com.XXX.ecc.cloudbiz.domain.shop.ShopBaseInfo" useGeneratedKeys="true" keyProperty="shopId">
INSERT INTO
<include refid="TABLE"/>
(
shop_name,
shop_keeper_id,
shop_desc,
shop_template_id,
shop_logo_url,
shop_backgroud_pic,
shop_type,
sync_status,
jd_shop_id,
platform_id,
created,
modified,
yn
)VALUES(
#{shopName},
#{shopKeeperId},
#{shopDesc},
#{shopTemplateId},
#{shopLogoUrl},
#{shopBackgroudPic},
#{shopType},
#{syncStatus},
#{jdShopId},
#{platformId},
#{created},
#{modified},
#{yn}
)
</insert>

mybatis中useGeneratedKeys和keyProperty的使用

标签:获取   使用   col   style   create   设置   模型   get   ted   

原文地址:https://www.cnblogs.com/xuzhujack/p/10907838.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!