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?