Hibernate version: 3.1
What if there is a List of components (with composite-element) with multiple objects, but every object in the list has all its fields with null. An object with all fields null is stored as simply null (as per the documents). But in org.hibernate.collection.PersistentList.needsInserting() says to always insert if the entry is null... and then Hibernate tries to repeat insers it has already done, giving db constraint violations.
Well... that's my interpretation.
Here's the stack trace:
Code:
java.sql.BatchUpdateException: ORA-00001: restricción única (CORE.SYS_C008580) violada
at oracle.jdbc.dbaccess.DBError.throwBatchUpdateException(DBError.java:459)
at oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedStatement.java:4210)
at org.hibernate.jdbc.BatchingBatcher.doExecuteBatch(BatchingBatcher.java:58)
at org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:195)
at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:230)
at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:143)
at org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:296)
at org.hibernate.event.def.DefaultAutoFlushEventListener.onAutoFlush(DefaultAutoFlushEventListener.java:41)
at org.hibernate.impl.SessionImpl.autoFlushIfRequired(SessionImpl.java:951)
at org.hibernate.impl.SessionImpl.list(SessionImpl.java:1485)
at org.hibernate.impl.CriteriaImpl.list(CriteriaImpl.java:298)
at com.modhelus.core.configurador.App.crearCombo(App.java:486)
at com.modhelus.core.configurador.App.editar(App.java:398)
at com.modhelus.core.configurador.VentanaBúsquedas$4.mouseClicked(VentanaBúsquedas.java:179)
at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:212)
at java.awt.Component.processMouseEvent(Component.java:5491)
at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
at java.awt.Component.processEvent(Component.java:5253)
at java.awt.Container.processEvent(Container.java:1966)
at java.awt.Component.dispatchEventImpl(Component.java:3955)
at java.awt.Container.dispatchEventImpl(Container.java:2024)
at java.awt.Component.dispatchEvent(Component.java:3803)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3901)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
at java.awt.Container.dispatchEventImpl(Container.java:2010)
at java.awt.Window.dispatchEventImpl(Window.java:1774)
at java.awt.Component.dispatchEvent(Component.java:3803)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
Part of the mapping file (the collection is "instrucciones"):
Code:
<joined-subclass name="Operacion">
<key column="idConfigurable"/>
<property name="primitiva" column="esPrimitiva" not-null="true"/>
<properties name="props" unique="true">
<many-to-one name="verbo" not-null="true"/>
<many-to-one name="entidad" not-null="true"/>
<property name="restoDelNombre" length="25"/>
</properties>
<list name="instrucciones" table="Instruccion" cascade="all,delete-orphan">
<key column="idOperacion"/>
<list-index column="orden"/>
<composite-element class="Instruccion">
<parent name="operacion"/>
<many-to-one name="operacionInvocada" column="idOperacionInvocada"/>
</composite-element>
</list>
</joined-subclass>
Thanks!