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

Mybatis insert 返回主键

时间:2014-09-03 19:49:27      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   div   cti   sp   

    @Override
    protected int insert(Card record)
    {
        int result = cardMapper.insertSelective(record);
        return (int) (result == 1 ? record.getId() : result);
    }

之前以为 result就是insert record的主键id。

测试的时候发现,每次都返回 1.

后来google才发现 主键id set到 record指定的(id)字段上了.

http://stackoverflow.com/questions/12103606/get-the-id-of-last-inserted-record-in-mybatis

 

Mybatis insert 返回主键

标签:style   blog   http   color   io   ar   div   cti   sp   

原文地址:http://www.cnblogs.com/shouwangzhe-/p/3954394.html

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