写点什么

Mybatis【6】-- Mybatis 插入数据后自增 id 怎么获取?

发布于: 2020 年 12 月 05 日
Mybatis【6】-- Mybatis插入数据后自增id怎么获取?

代码直接放在 Github 仓库【https://github.com/Damaer/Mybatis-Learning/tree/master/mybatis-05-CURD 】

需要声明的是:此Mybatis学习笔记,是从原始的Mybatis开始的,而不是整合了其他框架(比如Spring)之后,个人认为,这样能对它的功能,它能帮我们做什么,有更好的理解,后面再慢慢叠加其他的功能。


我们知道很多时候我们有一个需求,我们需要把插入数据后的 id 返回来,以便我们下一次操作。


其实一开始的思路是我插入之后,再执行一次 select,根据一个唯一的字段来执行select操作,但是Student这个类如果插入后再根据名字或者年龄查出来,这根本就是不可行的!!!重名与同年龄的人一定不少。

我们的测试方法如下,我们可以看到插入前是没有值的,插入后就有了值:

/** * 测试插入后获取id */@Testpublic void testinsertStudentCacheId(){    Student student=new Student("helloworld",17,85);    System.out.println("插入前:student="+student);    dao.insertStudentCacheId(student);    System.out.println("插入后:student="+student);}
复制代码


useGeneratedKeys 设置主键自增

    <insert id="insertStudentCacheId" useGeneratedKeys="true" keyProperty="id" parameterType="Student">        insert into student(name,age,score) values(#{name},#{age},#{score})    </insert>
复制代码

需要注意的点:

  • 1.useGeneratedKeys="true"表示设置属性自增

  • 2.keyProperty="id"设置主键的字段

  • 3.parameterType="Student"设置传入的类型

  • 4.注意:虽然有返回类型,但是我们不需要手动设置返回的类型,这个是由框架帮我们实现的,所以对应的接口方法也是没有返回值的,会修改我们插入的对象,设置 id 值。

  • 5.实体类中 id 属性字段一定需要 set 以及 get 方法



使用 selectKey 查询主键

    <insert id="insertStudentCacheId" parameterType="Student">        insert into student(name,age,score) values(#{name},#{age},#{score})        <!-- 指定结果类型resultType,keyProperty是属性,自动返回到属性id中,order是次序,after是指获取id是在于插入后 -->        <selectKey resultType="int" keyProperty="id" order="AFTER">            select @@identity        </selectKey>    </insert>
复制代码

或者写成:

    <insert id="insertStudentCacheId" parameterType="Student">        insert into student(name,age,score) values(#{name},#{age},#{score})        <!-- 指定结果类型resultType,keyProperty是属性,自动返回到属性id中,order是次序,after是指获取id是在于插入后 -->        <selectKey resultType="int" keyProperty="id" order="AFTER">            select LAST_INSERT_ID()        </selectKey>    </insert>
复制代码

两种方式的结果:

[](http://markdownpicture.oss-cn-qingdao.aliyuncs.com/18-6-25/94139460.jpg)


注意要点:

  • 1.最外层的<insert></insert>没有返回属性(resultType),但是里面的<selectKey></selectKey>是有返回值类型的。

  • 2.order="AFTER"表示先执行插入,之后才执行selectkey语句的。

  • 3.select @@identityselect LAST_INSERT_ID()都表示选出刚刚插入的最后一条数据的 id。

  • 4.实体类中 id 属性字段一定需要 set 以及 get 方法

  • 5.此时,接口中仍不需要有返回值,框架会自动将值注入到我们insert的那个对象中,我们可以直接使用就可以了。


其实,我们的接口中可以有返回值,但是这个返回值不是 id,而是表示插入后影响的行数,此时 sql 中仍和上面一样,不需要写返回值。

<insert id="insertStudentCacheIdNoReturn" parameterType="Student">        insert into student(name,age,score) values(#{name},#{age},#{score})        <!-- 指定结果类型resultType,keyProperty是属性,自动返回到属性id中,order是次序,after是指获取id是在于插入后 -->        <selectKey resultType="int" keyProperty="id" order="AFTER">            select LAST_INSERT_ID()        </selectKey>    </insert>
复制代码

接口中:

// 增加新学生并返回id返回resultpublic int insertStudentCacheId(Student student);
复制代码

接口的实现类:

public int  insertStudentCacheId(Student student) {        int result;        try {            sqlSession = MyBatisUtils.getSqlSession();            result =sqlSession.insert("insertStudentCacheId", student);            sqlSession.commit();        } finally {            if (sqlSession != null) {                sqlSession.close();            }        }        return result;    }
复制代码

Test 中:

public void testinsertStudentCacheId(){        Student student=new Student("helloworld",17,101);        System.out.println("插入前:student="+student);        int result = dao.insertStudentCacheId(student);        System.out.println(result);        System.out.println("插入后:student="+student);    }
复制代码

结果证明:result 的值为 1,表示插入了一行,查看数据库,确实插入了数据。


PS:如果无法创建连接,需要把Mysql的 jar 包升级:

        <!-- mysql驱动包 -->        <dependency>            <groupId>mysql</groupId>            <artifactId>mysql-connector-java</artifactId>            <version>8.0.21</version>        </dependency>
复制代码


如果报以下的错误,那么需要将 &改成转义后的符号&amp;

org.apache.ibatis.exceptions.PersistenceException: ### Error building SqlSession.### Cause: org.apache.ibatis.builder.BuilderException: Error creating document instance.  Cause: org.xml.sax.SAXParseException; lineNumber: 14; columnNumber: 107; 对实体 "serverTimezone" 的引用必须以 ';' 分隔符结尾。
复制代码

在 xml 里面配置需要转义,不在 xml 文件里面配置则不需要

<property name="url" value="jdbc:mysql://127.0.0.1:3306/test?characterEncoding=utf-8&amp;serverTimezone=UTC"/>
复制代码


【作者简介】

秦怀,公众号【秦怀杂货店】作者,技术之路不在一时,山高水长,纵使缓慢,驰而不息。这个世界希望一切都很快,更快,但是我希望自己能走好每一步,写好每一篇文章,期待和你们一起交流。


此文章仅代表自己(本菜鸟)学习积累记录,或者学习笔记,如有侵权,请联系作者核实删除。人无完人,文章也一样,文笔稚嫩,在下不才,勿喷,如果有错误之处,还望指出,感激不尽~


发布于: 2020 年 12 月 05 日阅读数: 23
用户头像

纵使缓慢,驰而不息。 2018.05.17 加入

慢慢走,比较快。公众号:秦怀杂货店

评论

发布
暂无评论
Mybatis【6】-- Mybatis插入数据后自增id怎么获取?