本文介绍了如何识别一个对象在hibernate中是暂时的还是分离的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道瞬态实例意味着实例是新创建的,并且其相应的行不存在于数据库中,因为分离的实例在数据库中具有相应的条目,但与当前的任何会话都没有关联。

I know that transient instance means the instance is newly created and its corresponding row does not exist in the database where as detached instance has corresponding entry in the database but not associated with any session at present.


推荐答案

这听起来像你正在寻找。

It sounds like you're looking for EntityManager#contains(Object).

这篇关于如何识别一个对象在hibernate中是暂时的还是分离的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 21:41