I have a situation in which I need to re-attach detached objects to a hibernate session, although an object of the same identity MAY already exist in the session, which will cause errors.

Right now, I can do one of two things.

  1. getHibernateTemplate().update( obj ) This works if and only if an object doesn't already exist in the hibernate session. Exceptions are thrown stating an object with the given identifier already exists in the session when I need it later.

  2. getHibernateTemplate().merge( obj ) This works if and only if an object exists in the hibernate session. Exceptions are thrown when I need the object to be in a session later if I use this.

Given these two scenarios, how can I generically attach sessions to objects? I don't want to use exceptions to control the flow of this problem's solution, as there must be a more elegant solution...

link|improve this question

feedback

10 Answers

up vote 15 down vote accepted

I think that merge is the proper way to reattach objects. The Hibernate API for Session.merge(obj) states the following

Copy the state of the given object onto the persistent object with the same identifier. If there is no persistent instance currently associated with the session, it will be loaded. Return the persistent instance. If the given instance is unsaved, save a copy of and return it as a newly persistent instance. The given instance does not become associated with the session. This operation cascades to associated instances if the association is mapped with cascade="merge".

This seems to contradict your claim that it works if and only if an object exists in the hibernate session. According to the Javadoc the instance will be loaded if it is not currently associated with the Session.

link|improve this answer
4  
I had many problems preventing this from working. First of all, I needed to remember to udpate hibernate objects when they needed to be updated, and for the longest time I did not realize that session.merge RETURNED the new instance. – Stefan Kendall May 29 '09 at 15:39
For a good reference I would also recommend the Java Persistence with Hibernate book that cwash mentioned in his answer. – Mark May 29 '09 at 16:07
Yeah, the docs are good if you understand what Hibernate does and its intentions are already. If you do not, you either need to dive into the source... or look it up in JPwH. It's got a good index and will come to the rescue many times. – cwash May 29 '09 at 16:18
feedback

So it seems that there is no way to reattach a stale detached entity in JPA.

merge() will push the stale state to the DB, and overwrite any intervening updates.

refresh() cannot be called on a detached entity.

lock() cannot be called on a detached entity, and even if it could, and it did reattach the entity, calling 'lock' with argument 'LockMode.NONE' implying that you are locking, but not locking, is the most counterintuitive piece of API design I've ever seen.

So you are stuck. There's an detach() method, but no attach() or reattach(). An obvious step in the object lifecycle is not available to you.

Judging by the number of similar questions about JPA, it seems that even if JPA does claim to have a coherent model, it most certainly does not match the mental model of most programmers, who have been cursed to waste many hours trying understand how to get JPA to do the simplest things, and end up with cache management code all over their applications.

It seems the only way to do it is discard your stale detached entity and do a find query with the same id, that will hit the L2 or the DB.

Mik

link|improve this answer
feedback

Undiplomatic answer: You're probably looking for an extended persistence context. This is one of the main reasons behind the Seam Framework... If you're struggling to use Hibernate in Spring in particular, check out this piece of Seam's docs.

Diplomatic answer: This is described in the Hibernate docs. If you need more clarification, have a look at Section 9.3.2 of Java Persistence with Hibernate called "Working with Detached Objects." I'd strongly recommend you get this book if you're doing anything more than CRUD with Hibernate.

link|improve this answer
+1 for Java Persistence with Hibernate – kevin cline Jun 28 '11 at 16:36
feedback

If you are sure that your entity has not been modified (or if you agree any modification will be lost), then you may reattach it to the session with lock.

session.lock(entity, LockMode.NONE);

It will lock nothing, but it will get the entity from the session cache or (if not found there) read it from the DB.

It's very useful to prevent LazyInitException when you are navigating relations from an "old" (from the HttpSession for example) entities. You first "re-attach" the entity.

Using get may also work, except when you get inheritance mapped (which will already throw an exception on the getId()).

entity = session.get(entity.getClass(), entity.getId());
link|improve this answer
2  
I would like to re-associate an entity with session. Unfortunately, Session.lock(entity, LockMode.NONE) fails with exception saying: could not reassociate uninitialized transient collection. How can overcome this? – dma_k Sep 26 '10 at 21:41
In fact I was not completely right. Using lock() reattaches your entity, but not the other entities bound to it. So if you do entity.getOtherEntity().getYetAnotherEntity(), you may have a LazyInit exception. The only way I know to overcome that is to use find. entity = em.find(entity.getClass(), entity.getId(); – John Rizzo Mar 29 '11 at 9:16
There is no Session.find() API method. Perhaps you mean Session.load(Object object, Serializable id). – dma_k Apr 11 '11 at 12:28
feedback

calling first merge() (to update persistent instance), then lock(LockMode.NONE) (to attach the current instance, not the one returned by merge()) seems to work for some use cases.

link|improve this answer
feedback

In the original post, there are two methods, update(obj) and merge(obj) that are mentioned to work, but in opposite circumstances. If this is really true, then why not test to see if the object is already in the session first, and then call update(obj) if it is, otherwise call merge(obj).

The test for existence in the session is session.contains(obj). Therefore, I would think the following pseudo-code would work:

if (session.contains(obj)) { session.update(obj); } else { session.merge(obj); }

link|improve this answer
feedback

I came up with a solution to "refresh" an object from the persistence store that will account for other objects which may already be attached to the session:

public void refreshDetached(T entity, Long id)
{
    // Check for any OTHER instances already attached to the session since
    // refresh will not work if there are any.
    T attached = (T) session.load(getPersistentClass(), id);
    if (attached != entity)
    {
        session.evict(attached);
        session.lock(entity, LockMode.NONE);
    }
    session.refresh(entity);
}
link|improve this answer
feedback

All of these answers miss an important distinction. update() is used to (re)attach your object graph to a Session. The objects you pass it are the ones that are made managed.

merge() is actually not a (re)attachment API. Notice merge() has a return value? Thats because it returns you the managed graph, which may not be the graph you passed it. merge() is a JPA API and its behavior is governed by the JPA spec. If the object you pass in to merge() is already managed (already associated with the Session) then thats the graph Hibernate works with and is the same object returned from merge(). If, however, the object you pass into merge() is detached Hibernate creates a new object graph that is managed and copied the state from your detached graph onto the new managed graph. Again, this is all dictated and governed by the JPA spec.

In terms of a generic strategy for "make sure this entity is managed, or make it managed", it kind of depends if you want to account for not-yet-inserted data as well. Assuming you do, use something like

if ( session.contains( myEntity ) ) {
    // nothing to do... myEntity is already associated with the session
}
else {
    session.saveOrUpdate( myEntity );
}

Notice I used saveOrUpdate() rather than update(). If you do not want not-yet-inserted data handled here, use update() instead...

link|improve this answer
feedback

try getHibernateTemplate().replicate(entity,ReplicationMode.LATEST_VERSION)

link|improve this answer
feedback

try getHibernateTemplate().saveOrUpdate()

link|improve this answer
saveOrUpdate will throw an exception just like update does. – Mark May 26 '09 at 21:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.