-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Posible bug in Hibernate with list of components.
PostPosted: Thu Dec 15, 2005 4:52 pm 
Beginner
Beginner

Joined: Fri Jul 22, 2005 3:35 pm
Posts: 24
Location: Buenos Aires, Argentina
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!


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.