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

mybatis获取insert数据的主键

时间:2020-05-18 12:15:45      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:prope   static   insert   use   parameter   gen   values   主键   ram   

<insert id="xxx" parameterType="com.yanan.Test" keyProperty="testId" useGeneratedKeys="true">
insert into Test(name) values(#{name})

</insert>

public static class Test{

private int testId;

private String name;

getter和setter

}

parameterType必须用与表对应的类接收

mybatis获取insert数据的主键

标签:prope   static   insert   use   parameter   gen   values   主键   ram   

原文地址:https://www.cnblogs.com/yanan7890/p/12909677.html

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