I'm curious to know how Hibernate would handle the following situation.

Let's say we have a User entity, which has a country property, set to cascade the persistence:

public class User {
    @ManyToOne(cascade=CascadeType.PERSIST)
    protected Country country;
    // ...
}

Now, what if we assign a detached Country object to the User ...

user.setCountry(someDetachedCountry);

... but a Country with the same identity already exists in the current session?

Will the commit fail with an exception, or will it just use the detached country's identity as if it was in the session? In the latter case, will Hibernate try to cascade persistence to the detached Country's properties, if any of them are set to cascade?

link|improve this question

Why not just trying it in a unit test? I guess that it fails with an exception of the kind "there is already an object with this id". – Stefan Steinegger Aug 30 '11 at 14:04
feedback

1 Answer

up vote 1 down vote accepted

This is not an uncommon problem, especially when people try to use primitive types as identifiers and initialize them to values like -1. You're going to see a message similar to the following:

javax.persistence.PersistenceException: 
org.hibernate.PersistentObjectException: detached entity passed to persist: Country
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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