mybatis获取insert数据的主键
Posted 张亚南
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis获取insert数据的主键相关的知识,希望对你有一定的参考价值。
<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数据的主键的主要内容,如果未能解决你的问题,请参考以下文章
Mybatis 在 insert 之后想获取自增的主键 id,但是总是返回1