HHH-18230 throw when collection contains an unsaved instance
Signed-off-by: Gavin King <gavin@hibernate.org>
This commit is contained in:
parent
cf0e4d4622
commit
aa91138b6b
|
@ -24,7 +24,6 @@ import org.jboss.logging.Logger;
|
||||||
|
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
|
|
||||||
import static java.util.Collections.emptySet;
|
|
||||||
import static org.hibernate.engine.internal.ForeignKeys.isTransient;
|
import static org.hibernate.engine.internal.ForeignKeys.isTransient;
|
||||||
import static org.hibernate.engine.internal.ManagedTypeHelper.isHibernateProxy;
|
import static org.hibernate.engine.internal.ManagedTypeHelper.isHibernateProxy;
|
||||||
|
|
||||||
|
@ -371,19 +370,31 @@ public class CascadingActions {
|
||||||
boolean isCascadeDeleteEnabled)
|
boolean isCascadeDeleteEnabled)
|
||||||
throws HibernateException {
|
throws HibernateException {
|
||||||
if ( child != null
|
if ( child != null
|
||||||
|
// a proxy is always non-transient
|
||||||
|
// and ForeignKeys.isTransient()
|
||||||
|
// is not written to expect a proxy
|
||||||
|
&& !isHibernateProxy( child )
|
||||||
|
// if it's associated with the session
|
||||||
|
// we are good, even if it's not yet
|
||||||
|
// inserted, since ordering problems
|
||||||
|
// are detected and handled elsewhere
|
||||||
&& !isInManagedState( child, session )
|
&& !isInManagedState( child, session )
|
||||||
&& !isHibernateProxy( child ) ) { //a proxy cannot be transient and it breaks ForeignKeys.isTransient
|
// TODO: check if it is a merged entity which has not yet been flushed
|
||||||
if ( isTransient( entityName, child, null, session ) ) {
|
// Currently this throws if you directly reference a new transient
|
||||||
//TODO: should be TransientPropertyValueException
|
// instance after a call to merge() that results in its managed copy
|
||||||
throw new TransientObjectException( "persistent instance references an unsaved transient instance of '"
|
// being scheduled for insertion, if the insert has not yet occurred.
|
||||||
+ entityName + "' (save the transient instance before flushing)" );
|
// This is not terrible: it's more correct to "swap" the reference to
|
||||||
// throw new TransientPropertyValueException(
|
// point to the managed instance, but it's probably too heavy-handed.
|
||||||
// "object references an unsaved transient instance - save the transient instance before flushing",
|
&& isTransient( entityName, child, null, session ) ) {
|
||||||
// entityName,
|
throw new TransientObjectException( "persistent instance references an unsaved transient instance of '"
|
||||||
// persister.getEntityName(),
|
+ entityName + "' (save the transient instance before flushing)" );
|
||||||
// persister.getPropertyNames()[propertyIndex]
|
//TODO: should be TransientPropertyValueException
|
||||||
// );
|
// throw new TransientPropertyValueException(
|
||||||
}
|
// "object references an unsaved transient instance - save the transient instance before flushing",
|
||||||
|
// entityName,
|
||||||
|
// persister.getEntityName(),
|
||||||
|
// persister.getPropertyNames()[propertyIndex]
|
||||||
|
// );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -392,7 +403,7 @@ public class CascadingActions {
|
||||||
EventSource session,
|
EventSource session,
|
||||||
CollectionType collectionType,
|
CollectionType collectionType,
|
||||||
Object collection) {
|
Object collection) {
|
||||||
return emptySet().iterator();
|
return getLoadedElementsIterator( session, collectionType, collection );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -501,7 +512,7 @@ public class CascadingActions {
|
||||||
return collectionType.getElementsIterator( collection );
|
return collectionType.getElementsIterator( collection );
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// does not handle arrays (thats ok, cos they can't be lazy)
|
// does not handle arrays (that's ok, cos they can't be lazy)
|
||||||
// or newly instantiated collections, so we can do the cast
|
// or newly instantiated collections, so we can do the cast
|
||||||
return ((PersistentCollection<?>) collection).queuedAdditionIterator();
|
return ((PersistentCollection<?>) collection).queuedAdditionIterator();
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,7 +40,7 @@ public class FindWithEntityGraphTest {
|
||||||
Person person = new Person( 1L, "test" );
|
Person person = new Person( 1L, "test" );
|
||||||
|
|
||||||
Person child1 = new Person( 2L, "child1" );
|
Person child1 = new Person( 2L, "child1" );
|
||||||
Person child2 = new Person( 2L, "child2" );
|
Person child2 = new Person( 3L, "child2" );
|
||||||
child1.addParent( person );
|
child1.addParent( person );
|
||||||
child2.addParent( person );
|
child2.addParent( person );
|
||||||
entityManager.persist( person );
|
entityManager.persist( person );
|
||||||
|
@ -81,7 +81,7 @@ public class FindWithEntityGraphTest {
|
||||||
@OneToOne(mappedBy = "person", orphanRemoval = true, cascade = CascadeType.ALL)
|
@OneToOne(mappedBy = "person", orphanRemoval = true, cascade = CascadeType.ALL)
|
||||||
private PersonContact personContact;
|
private PersonContact personContact;
|
||||||
|
|
||||||
@OneToMany(mappedBy = "parent")
|
@OneToMany(mappedBy = "parent", orphanRemoval = true, cascade = CascadeType.ALL)
|
||||||
private Set<Person> children = new HashSet<>( 0 );
|
private Set<Person> children = new HashSet<>( 0 );
|
||||||
|
|
||||||
public Person() {
|
public Person() {
|
||||||
|
|
|
@ -3,6 +3,7 @@ package org.hibernate.orm.test.iterate;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import jakarta.persistence.CascadeType;
|
||||||
import org.hibernate.ScrollMode;
|
import org.hibernate.ScrollMode;
|
||||||
import org.hibernate.ScrollableResults;
|
import org.hibernate.ScrollableResults;
|
||||||
import org.hibernate.query.spi.QueryImplementor;
|
import org.hibernate.query.spi.QueryImplementor;
|
||||||
|
@ -71,7 +72,7 @@ public class ForwardOnlyScrollNoTransactionTest {
|
||||||
|
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
@OneToMany(mappedBy = "father", fetch = FetchType.EAGER)
|
@OneToMany(mappedBy = "father", fetch = FetchType.EAGER, cascade = CascadeType.PERSIST)
|
||||||
public List<Son> sons = new ArrayList<>();
|
public List<Son> sons = new ArrayList<>();
|
||||||
|
|
||||||
public Father() {
|
public Father() {
|
||||||
|
|
|
@ -30,7 +30,7 @@ import static org.junit.jupiter.api.Assertions.fail;
|
||||||
* <p>
|
* <p>
|
||||||
* All IDs are generated from a sequence.
|
* All IDs are generated from a sequence.
|
||||||
* <p>
|
* <p>
|
||||||
* JPA cascade types are used (jakarta.persistence.CascadeType)..
|
* JPA cascade types are used (jakarta.persistence.CascadeType).
|
||||||
* <p>
|
* <p>
|
||||||
* This test uses the following model:
|
* This test uses the following model:
|
||||||
*
|
*
|
||||||
|
@ -186,7 +186,7 @@ public class MultiCircleJpaCascadeTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testPersistThenUpdateNoCascadeToTransient(EntityManagerFactoryScope scope) {
|
public void testPersistThenUpdateNoCascadeToTransient1(EntityManagerFactoryScope scope) {
|
||||||
scope.inEntityManager(
|
scope.inEntityManager(
|
||||||
entityManager -> {
|
entityManager -> {
|
||||||
// remove elements from collections and persist
|
// remove elements from collections and persist
|
||||||
|
@ -205,21 +205,63 @@ public class MultiCircleJpaCascadeTest {
|
||||||
catch (RollbackException ex) {
|
catch (RollbackException ex) {
|
||||||
assertTrue( ex.getCause() instanceof IllegalStateException );
|
assertTrue( ex.getCause() instanceof IllegalStateException );
|
||||||
IllegalStateException ise = (IllegalStateException) ex.getCause();
|
IllegalStateException ise = (IllegalStateException) ex.getCause();
|
||||||
assertTyping(
|
assertTyping( TransientObjectException.class, ise.getCause() );
|
||||||
TransientObjectException.class,
|
String message = ise.getCause().getMessage();
|
||||||
ise.getCause()
|
assertTrue( message.contains("'org.hibernate.orm.test.jpa.cascade.multicircle.B'") );
|
||||||
);
|
}
|
||||||
|
finally {
|
||||||
|
entityManager.getTransaction().rollback();
|
||||||
|
entityManager.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testPersistThenUpdateNoCascadeToTransient2(EntityManagerFactoryScope scope) {
|
||||||
|
scope.inEntityManager(
|
||||||
|
entityManager -> {
|
||||||
|
// remove elements from collections and persist
|
||||||
|
c.getBCollection().clear();
|
||||||
|
c.getDCollection().clear();
|
||||||
|
|
||||||
|
entityManager.getTransaction().begin();
|
||||||
|
entityManager.persist( c );
|
||||||
|
entityManager.persist( b );
|
||||||
|
// now add the elements back
|
||||||
|
c.getBCollection().add( b );
|
||||||
|
c.getDCollection().add( d );
|
||||||
|
entityManager.getTransaction().commit();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testPersistThenUpdateNoCascadeToTransient3(EntityManagerFactoryScope scope) {
|
||||||
|
scope.inEntityManager(
|
||||||
|
entityManager -> {
|
||||||
|
// remove elements from collections and persist
|
||||||
|
c.getBCollection().clear();
|
||||||
|
c.getDCollection().clear();
|
||||||
|
d.getBCollection().clear();
|
||||||
|
|
||||||
|
entityManager.getTransaction().begin();
|
||||||
|
entityManager.persist( c );
|
||||||
|
// now add the elements back
|
||||||
|
c.getDCollection().add( d );
|
||||||
|
try {
|
||||||
|
entityManager.getTransaction().commit();
|
||||||
|
fail( "should have thrown IllegalStateException" );
|
||||||
|
}
|
||||||
|
catch (RollbackException ex) {
|
||||||
|
assertTrue( ex.getCause() instanceof IllegalStateException );
|
||||||
|
IllegalStateException ise = (IllegalStateException) ex.getCause();
|
||||||
|
assertTyping( TransientObjectException.class, ise.getCause() );
|
||||||
String message = ise.getCause().getMessage();
|
String message = ise.getCause().getMessage();
|
||||||
assertTrue( message.contains("'org.hibernate.orm.test.jpa.cascade.multicircle.F'") );
|
assertTrue( message.contains("'org.hibernate.orm.test.jpa.cascade.multicircle.F'") );
|
||||||
assertTrue( message.contains("'g'") );
|
assertTrue( message.contains("'g'") );
|
||||||
// TransientPropertyValueException tpve = assertTyping(
|
}
|
||||||
// TransientPropertyValueException.class,
|
finally {
|
||||||
// ise.getCause()
|
|
||||||
// );
|
|
||||||
// assertEquals( G.class.getName(), tpve.getTransientEntityName() );
|
|
||||||
// assertEquals( F.class.getName(), tpve.getPropertyOwnerEntityName() );
|
|
||||||
// assertEquals( "g", tpve.getPropertyName() );
|
|
||||||
} finally {
|
|
||||||
entityManager.getTransaction().rollback();
|
entityManager.getTransaction().rollback();
|
||||||
entityManager.close();
|
entityManager.close();
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,7 +77,7 @@ public class JoinTest {
|
||||||
|
|
||||||
entityManager.persist( order1 );
|
entityManager.persist( order1 );
|
||||||
entityManager.persist( order2 );
|
entityManager.persist( order2 );
|
||||||
entityManager.persist( order2 );
|
entityManager.persist( order3 );
|
||||||
|
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
|
@ -322,6 +322,7 @@ public class EntityGraphTest extends BaseEntityManagerFunctionalTestCase {
|
||||||
Book book = new Book();
|
Book book = new Book();
|
||||||
author.books.put(1, book);
|
author.books.put(1, book);
|
||||||
em.persist(author);
|
em.persist(author);
|
||||||
|
em.persist(book);
|
||||||
|
|
||||||
em.getTransaction().commit();
|
em.getTransaction().commit();
|
||||||
em.clear();
|
em.clear();
|
||||||
|
|
|
@ -59,14 +59,16 @@ public class OrderUpdatesTest {
|
||||||
Child child1 = new Child();
|
Child child1 = new Child();
|
||||||
child1.setName( "name1" );
|
child1.setName( "name1" );
|
||||||
child1.setValue( "value" );
|
child1.setValue( "value" );
|
||||||
parent1.addChild( child1 );
|
child1.setParent( parent1 );
|
||||||
child1 = session.merge( child1 );
|
child1 = session.merge( child1 );
|
||||||
|
parent1.addChild( child1 );
|
||||||
|
|
||||||
Child child2 = new Child();
|
Child child2 = new Child();
|
||||||
child2.setName( "name1" );
|
child2.setName( "name1" );
|
||||||
child2.setValue( "value" );
|
child2.setValue( "value" );
|
||||||
parent2.addChild( child2 );
|
child2.setParent( parent2 );
|
||||||
child2 = session.merge( child2 );
|
child2 = session.merge( child2 );
|
||||||
|
parent2.addChild( child2 );
|
||||||
|
|
||||||
session.flush();
|
session.flush();
|
||||||
|
|
||||||
|
|
|
@ -156,6 +156,7 @@ public class RemovedObjectQueryTest extends BaseEnversJPAFunctionalTestCase {
|
||||||
// Revision 9 - removing first object
|
// Revision 9 - removing first object
|
||||||
em.getTransaction().begin();
|
em.getTransaction().begin();
|
||||||
setOwningEntity2 = em.find( SetOwningEntity.class, 7 );
|
setOwningEntity2 = em.find( SetOwningEntity.class, 7 );
|
||||||
|
setOwnedEntity2.getReferencing().remove( setOwningEntity2 );
|
||||||
em.remove( setOwningEntity2 );
|
em.remove( setOwningEntity2 );
|
||||||
em.getTransaction().commit();
|
em.getTransaction().commit();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue