merge与update区别

这篇博客详细对比了Hibernate中的merge和update方法在不同场景下的行为。当数据库记录已存在时,merge会在查询后更新,若值相同则不执行;update始终尝试更新。如果记录不存在,merge会插入新记录,而update则抛出StaleStateException。merge操作后的对象保持脱管状态,而update对象变为持久化状态。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1. 数据库记录已存在,更改person的name为一个新的name。 


merge方法打印出的日志如下: 
hibernate: select person0_.id as id0_0_, person0_.name as name0_0_ from person person0_ where person0_.id=? 
Hibernate: update person set name=? where id=? 

update方法打印出的日志如下: 
Hibernate: update person set name=? where id=? 

2. 数据库记录已存在,更改person的name和数据库里对应id记录的name一样的值。 

merge方法打印出的日志如下: 
Hibernate: select person0_.id as id0_0_, person0_.name as name0_0_ from person person0_ where person0_.id=? 
此处相对于第一种情形少了update的动作 

update方法打印出的日志如下: 
Hibernate: update person set name=? where id=? 

3. 数据库记录不存在时,也就是你传的实体bean的ID在数据库没有对应的记录。 

merge方法打印出的日志如下: 
Hibernate: select person0_.id as id0_0_, person0_.name as name0_0_ from person person0_ where person0_.id=? 
Hibernate: insert into person (name) values (?) 
如果没有对应的记录,merge会把该记录当作新的记录来插入。此处我很疑惑,因为我传得person实体对象里写明了id值的,它为什么还会做插入的动作呢? 

update方法打印出的日志如下: 
Hibernate: update person set name=? where id=? 
2009-11-22 20:59:55,359 ERROR [org.hibernate.jdbc.AbstractBatcher] - Exception executing batch: 
org.hibernate.StaleStateException: Batch update returned unexpected row count from update [0]; actual row count: 0; expected: 1 

  当我们使用update的时候,执行完成后,我们提供的对象A的状态变成持久化状态。 
  但当我们使用merge的时候,执行完成,我们提供的对象A还是脱管状态,hibernate或者new了一个B,或者检索到 一个持久对象B,并把我们提供的对象A的所有的值拷贝到这个B,执行完成后B是持久状态,而我们提供的A还是托管状态。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值