服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服务器之家 - 编程语言 - JAVA教程 - 利用Java的MyBatis框架获取MySQL中插入记录时的自增主键

利用Java的MyBatis框架获取MySQL中插入记录时的自增主键

2020-05-08 11:40hellostory JAVA教程

这篇文章主要介绍了利用Java的MyBatis框架获取MySQL中插入记录的自增长字段值,其中大家可以看到MyBatis支持普通SQL语句所带来的遍历,需要的朋友可以参考下

第一步:
在Mybatis Mapper文件中添加属性“useGeneratedKeys”和“keyProperty”,其中keyProperty是Java对象的属性名!

?
1
2
3
4
5
6
<insert id="insert" parameterType="Spares"
    useGeneratedKeys="true" keyProperty="id">
    insert into spares(spares_id,spares_name,
      spares_type_id,spares_spec)
    values(#{id},#{name},#{typeId},#{spec})
  </insert>

    
第二步:
Mybatis执行完插入语句后,自动将自增长值赋值给对象Spares的属性id。因此,可通过Spares对应的getter方法获取!

?
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * 新增备件
 
 * @param spares
 * @return
 */
@RequestMapping(value = "/insert")
@ResponseBody
public JsonResponse insert(Spares spares) {
  int count = sparesService.insert(spares);
  System.out.println("共插入" + count + "条记录!"
      + "\n刚刚插入记录的主键自增长值为:" + spares.getId());

           
另一种方法:

?
1
2
3
4
5
6
<insert id="insert" parameterType="Person">
  <selectKey keyProperty="id" resultType="long">
    select LAST_INSERT_ID()
  </selectKey>
  insert into person(name,pswd) values(#{name},#{pswd})
</insert>

插入前实体id属性为0;
插入后实体id属性为保存后自增的id;

延伸 · 阅读

精彩推荐