-->
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: IndexOutOfBoundsException being thrown during a flush/commit
PostPosted: Thu Sep 29, 2005 7:53 am 
Newbie

Joined: Thu Sep 29, 2005 7:15 am
Posts: 2
Hi,

I am using session.replicate() to put an object graph into our Oracle database, but when either flush() or commit() are called I get the following stack trace:

Code:
java.lang.IndexOutOfBoundsException: Index: 1, Size: 0
   at java.util.ArrayList.RangeCheck(ArrayList.java:507)
   at java.util.ArrayList.get(ArrayList.java:324)
   at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:223)
   at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:137)
   at org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:274)
   at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:27)
   at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:730)
   at org.hibernate.impl.SessionImpl.managedFlush(SessionImpl.java:324)
   at org.hibernate.transaction.JDBCTransaction.commit(JDBCTransaction.java:86)
   at org.springframework.orm.hibernate3.HibernateTransactionManager.doCommit(HibernateTransactionManager.java:488)
   at org.springframework.transaction.support.AbstractPlatformTransactionManager.commit(AbstractPlatformTransactionManager.java:435)
   at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:126)
   at com.db.gto.tms.agr.util.batchProcessing.processors.DelegatingHibernateProcessor.process(DelegatingHibernateProcessor.java:99)
   at com.db.gto.tms.agr.util.batchProcessing.processors.SimpleBatchToucher.process(SimpleBatchToucher.java:109)
   at com.db.gto.tms.agr.util.batchProcessing.processors.BatchProcessor.run(BatchProcessor.java:145)
   at java.lang.Thread.run(Thread.java:534)


I am using Hibernate 3.0 (and tested 3.1Beta3) and by debugging this sequence I can see that the method executeActions(List list) of the class org.hibernate.engine.ActionQueue is altering the length of the ArrayList during the loop which accesses each element in the ArrayList. This throws the exception.

Code:
   private void executeActions(List list) throws HibernateException {
      int size = list.size();
      for ( int i = 0; i < list.size(); i++ ) {
         execute( (Executable) list.get(i) );
      }
      list.clear();
      session.getBatcher().executeBatch();
   }


I altered the expression in the for loop shown above from "for ( int i = 0; i < size; i++ )" to "for ( int i = 0; i < list.size(); i++ )" and this solves the problem.

I believe that the Executable being run is the EntityUpdateAction and that deeper down the clearFromFlushNeededCheck(int) method of ActionQueue is being called which calls updates.clear() possibly causing the problem with the size of the ArrayList. It only ever happens when the number of updates needed is greater than one.

Its quite possible that my mapping files are causing the problem, but there are quite a lot and I am using the Spring framework (version 1.2.1) to manage the Hibernate access and the transactions so the code surrounding the call is spread through many classes.

You're welcome to see any files you need to see, but initially I'll just attach the full debug of the start of the replication through to the stack trace. (It's a trifle large!).

Thanks and best wishes,

John Plaxton

[code]27375 [Thread-11] INFO com.db.gto.tms.agr.dao.RelationalDAO - putAsBean started
27375 [Thread-11] INFO com.db.gto.tms.agr.dao.types.BetterHibernateTemplate - ------ Replicate: ApplicationBean=com.db.gto.tms.agr.bean.model.ApplicationBean - OVERWRITE
27375 [Thread-11] DEBUG org.hibernate.persister.entity.BasicEntityPersister - Getting version: [ApplicationBean#269]
27375 [Thread-11] DEBUG org.hibernate.jdbc.AbstractBatcher - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
27375 [Thread-11] DEBUG org.hibernate.SQL - select APP_ID from VH_APP where APP_ID =?
27375 [Thread-11] DEBUG org.hibernate.jdbc.AbstractBatcher - preparing statement
27375 [Thread-11] DEBUG org.hibernate.type.IntegerType - binding '269' to parameter: 1
27391 [Thread-11] DEBUG org.hibernate.jdbc.AbstractBatcher - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
27391 [Thread-11] DEBUG org.hibernate.jdbc.AbstractBatcher - closing statement
27391 [Thread-11] DEBUG org.hibernate.event.def.DefaultReplicateEventListener - found existing row for [ApplicationBean#269]
27391 [Thread-11] DEBUG org.hibernate.event.def.DefaultReplicateEventListener - replicating changes to [ApplicationBean#269]
27391 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [ApplicationBean.ApplicationBean.contacts.itpm#269]
27406 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [ApplicationBean.ApplicationBean.contacts.itpmDelegate#269]
27406 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [ApplicationBean.ApplicationBean.contacts.irm#269]
27406 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [ApplicationBean.ApplicationBean.contacts.iao#269]
27406 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [ApplicationBean.ApplicationBean.contacts.biso#269]
27406 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [ApplicationBean.ApplicationBean.contacts.tiso#269]
27406 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [ApplicationBean.ApplicationBean.contacts.dbRammItContact#269]
27406 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [ApplicationBean.instances#269]
27406 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [ApplicationBean.aliases#269]
27406 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [ApplicationBean.databases#269]
27406 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [ApplicationBean.operatingSystems#269]
27406 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [ApplicationBean.productionSoftware#269]
27406 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [ApplicationBean.programmingLanguages#269]
27406 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_REPLICATE for: ApplicationBean
27422 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_REPLICATE for collection: ApplicationBean.instances
27422 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascading to replicate: InstanceBean
27422 [Thread-11] DEBUG org.hibernate.persister.entity.BasicEntityPersister - Getting version: [InstanceBean#269-1]
27422 [Thread-11] DEBUG org.hibernate.jdbc.AbstractBatcher - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
27422 [Thread-11] DEBUG org.hibernate.SQL - select INS_ID from VH_INS where INS_ID =?
27422 [Thread-11] DEBUG org.hibernate.jdbc.AbstractBatcher - preparing statement
27422 [Thread-11] DEBUG org.hibernate.type.StringType - binding '269-1' to parameter: 1
27437 [Thread-11] DEBUG org.hibernate.jdbc.AbstractBatcher - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
27437 [Thread-11] DEBUG org.hibernate.jdbc.AbstractBatcher - closing statement
27437 [Thread-11] DEBUG org.hibernate.event.def.DefaultReplicateEventListener - found existing row for [InstanceBean#269-1]
27437 [Thread-11] DEBUG org.hibernate.event.def.DefaultReplicateEventListener - replicating changes to [InstanceBean#269-1]
27437 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [InstanceBean.InstanceBean.contacts.itpm#269-1]
27437 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [InstanceBean.InstanceBean.contacts.itpmDelegate#269-1]
27437 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [InstanceBean.InstanceBean.contacts.iao#269-1]
27437 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [InstanceBean.InstanceBean.contacts.biso#269-1]
27437 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [InstanceBean.InstanceBean.contacts.secondaryBiso#269-1]
27437 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [InstanceBean.InstanceBean.contacts.tiso#269-1]
27453 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [InstanceBean.InstanceBean.contacts.secondaryTiso#269-1]
27453 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [InstanceBean.InstanceBean.contacts.esmReviewer1#269-1]
27453 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [InstanceBean.InstanceBean.contacts.esmReviewer2#269-1]
27453 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [InstanceBean.InstanceBean.contacts.irm#269-1]
27453 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [InstanceBean.businessUsage#269-1]
27453 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [InstanceBean.functionalDomains#269-1]
27453 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [InstanceBean.hostingServices#269-1]
27453 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [InstanceBean.ibmProducts#269-1]
27453 [Thread-11] DEBUG org.hibernate.event.def.ReattachVisitor - collection dereferenced while transient [InstanceBean.webAddresses#269-1]
27453 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_REPLICATE for: InstanceBean
27453 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_REPLICATE for collection: InstanceBean.businessUsage
27453 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascading to replicate: com.db.gto.tms.agr.bean.model.components.BusinessUsageBean
27469 [Thread-11] DEBUG org.hibernate.persister.entity.BasicEntityPersister - Getting version: [com.db.gto.tms.agr.bean.model.components.BusinessUsageBean#0]
27469 [Thread-11] DEBUG org.hibernate.jdbc.AbstractBatcher - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
27469 [Thread-11] DEBUG org.hibernate.SQL - select INS_BUSINESSUSAGE_ID from VH_INS_BUSINESSUSAGE where INS_BUSINESSUSAGE_ID =?
27469 [Thread-11] DEBUG org.hibernate.jdbc.AbstractBatcher - preparing statement
27469 [Thread-11] DEBUG org.hibernate.type.IntegerType - binding '0' to parameter: 1
27469 [Thread-11] DEBUG org.hibernate.jdbc.AbstractBatcher - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
27484 [Thread-11] DEBUG org.hibernate.jdbc.AbstractBatcher - closing statement
27484 [Thread-11] DEBUG org.hibernate.event.def.DefaultReplicateEventListener - found existing row for [com.db.gto.tms.agr.bean.model.components.BusinessUsageBean#0]
27484 [Thread-11] DEBUG org.hibernate.event.def.DefaultReplicateEventListener - replicating changes to [com.db.gto.tms.agr.bean.model.components.BusinessUsageBean#0]
27484 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_REPLICATE for collection: InstanceBean.businessUsage
27484 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_REPLICATE for: InstanceBean
27484 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_REPLICATE for collection: ApplicationBean.instances
27484 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_REPLICATE for: ApplicationBean
27484 [Thread-11] DEBUG org.hibernate.impl.SessionImpl - checking session dirtiness
27484 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - flushing session
27484 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - processing flush-time cascades
27484 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27484 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27484 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27484 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27484 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27484 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27484 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27500 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27500 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27500 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27500 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27500 [Thread-11] DEBUG org.hibernate.engine.Cascades - deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27500 [Thread-11] DEBUG org.hibernate.engine.Cascades - done deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27500 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27500 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27500 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27500 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27500 [Thread-11] DEBUG org.hibernate.engine.Cascades - deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27500 [Thread-11] DEBUG org.hibernate.engine.Cascades - done deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27500 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27516 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27516 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27516 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27516 [Thread-11] DEBUG org.hibernate.engine.Cascades - deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27516 [Thread-11] DEBUG org.hibernate.engine.Cascades - done deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27516 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27516 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27516 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27516 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: PersonBean
27516 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: PersonBean
27516 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: ApplicationBean
27516 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_SAVE_UPDATE for collection: ApplicationBean.instances
27516 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascading to saveOrUpdate: InstanceBean
27531 [Thread-11] DEBUG org.hibernate.event.def.AbstractSaveEventListener - persistent instance of: InstanceBean
27531 [Thread-11] DEBUG org.hibernate.event.def.DefaultSaveOrUpdateEventListener - ignoring persistent instance
27531 [Thread-11] DEBUG org.hibernate.event.def.DefaultSaveOrUpdateEventListener - object already associated with session: [InstanceBean#269-1]
27531 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_SAVE_UPDATE for collection: ApplicationBean.instances
27531 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: ApplicationBean
27531 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: InstanceBean
27531 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_SAVE_UPDATE for collection: InstanceBean.businessUsage
27531 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascading to saveOrUpdate: com.db.gto.tms.agr.bean.model.components.BusinessUsageBean
27531 [Thread-11] DEBUG org.hibernate.event.def.AbstractSaveEventListener - persistent instance of: com.db.gto.tms.agr.bean.model.components.BusinessUsageBean
27531 [Thread-11] DEBUG org.hibernate.event.def.DefaultSaveOrUpdateEventListener - ignoring persistent instance
27531 [Thread-11] DEBUG org.hibernate.event.def.DefaultSaveOrUpdateEventListener - object already associated with session: [com.db.gto.tms.agr.bean.model.components.BusinessUsageBean#0]
27531 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_SAVE_UPDATE for collection: InstanceBean.businessUsage
27531 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_SAVE_UPDATE for collection: InstanceBean.hostingServices
27531 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascading to saveOrUpdate: com.db.gto.tms.agr.bean.model.datacenter.ExternalDataCenterBean
27547 [Thread-11] DEBUG org.hibernate.event.def.AbstractSaveEventListener - persistent instance of: com.db.gto.tms.agr.bean.model.datacenter.ExternalDataCenterBean
27547 [Thread-11] DEBUG org.hibernate.event.def.DefaultSaveOrUpdateEventListener - ignoring persistent instance
27547 [Thread-11] DEBUG org.hibernate.event.def.DefaultSaveOrUpdateEventListener - object already associated with session: [com.db.gto.tms.agr.bean.model.datacenter.DeutscheBankDataCenterBean#14]
27547 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_SAVE_UPDATE for collection: InstanceBean.hostingServices
27547 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_SAVE_UPDATE for collection: InstanceBean.ibmProducts
27547 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascading to saveOrUpdate: com.db.gto.tms.agr.bean.model.components.IBMProductBean
27547 [Thread-11] DEBUG org.hibernate.event.def.AbstractSaveEventListener - persistent instance of: com.db.gto.tms.agr.bean.model.components.IBMProductBean
27547 [Thread-11] DEBUG org.hibernate.event.def.DefaultSaveOrUpdateEventListener - ignoring persistent instance
27547 [Thread-11] DEBUG org.hibernate.event.def.DefaultSaveOrUpdateEventListener - object already associated with session: [com.db.gto.tms.agr.bean.model.components.IBMProductBean#EKUDFLOGA]
27547 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_SAVE_UPDATE for collection: InstanceBean.ibmProducts
27547 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: InstanceBean
27547 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - dirty checking collections
27547 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - Flushing entities and processing referenced collections
27547 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [PersonBean.roles#297], was: [PersonBean.roles#297] (initialized)
27547 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [PersonBean.roles#6781], was: [PersonBean.roles#6781] (initialized)
27547 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [PersonBean.roles#2677], was: [PersonBean.roles#2677] (initialized)
27562 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [PersonBean.roles#5220], was: [PersonBean.roles#5220] (initialized)
27562 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children#F_1007], was: [com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children#F_1007] (uninitialized)
27562 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children#F_1038], was: [com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children#F_1038] (uninitialized)
27562 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children#F_1142], was: [com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children#F_1142] (uninitialized)
27562 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [PersonBean.roles#470], was: [PersonBean.roles#470] (initialized)
27562 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [PersonBean.roles#8270], was: [PersonBean.roles#8270] (initialized)
27562 [Thread-11] DEBUG org.hibernate.event.def.WrapVisitor - Wrapped collection in role: ApplicationBean.instances
27578 [Thread-11] DEBUG org.hibernate.event.def.WrapVisitor - Wrapped collection in role: ApplicationBean.aliases
27578 [Thread-11] DEBUG org.hibernate.event.def.WrapVisitor - Wrapped collection in role: ApplicationBean.databases
27578 [Thread-11] DEBUG org.hibernate.event.def.WrapVisitor - Wrapped collection in role: ApplicationBean.operatingSystems
27578 [Thread-11] DEBUG org.hibernate.event.def.WrapVisitor - Wrapped collection in role: ApplicationBean.productionSoftware
27578 [Thread-11] DEBUG org.hibernate.event.def.WrapVisitor - Wrapped collection in role: ApplicationBean.programmingLanguages
27578 [Thread-11] DEBUG org.hibernate.event.def.DefaultFlushEntityEventListener - Updating entity: [ApplicationBean#269]
27594 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [ApplicationBean.instances#269], was: [<unreferenced>] (initialized)
27594 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [ApplicationBean.aliases#269], was: [<unreferenced>] (initialized)
27594 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [ApplicationBean.databases#269], was: [<unreferenced>] (initialized)
27594 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [ApplicationBean.operatingSystems#269], was: [<unreferenced>] (initialized)
27594 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [ApplicationBean.productionSoftware#269], was: [<unreferenced>] (initialized)
27594 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [ApplicationBean.programmingLanguages#269], was: [<unreferenced>] (initialized)
27609 [Thread-11] DEBUG org.hibernate.event.def.WrapVisitor - Wrapped collection in role: InstanceBean.businessUsage
27609 [Thread-11] DEBUG org.hibernate.event.def.WrapVisitor - Wrapped collection in role: InstanceBean.functionalDomains
27609 [Thread-11] DEBUG org.hibernate.event.def.WrapVisitor - Wrapped collection in role: InstanceBean.hostingServices
27609 [Thread-11] DEBUG org.hibernate.event.def.WrapVisitor - Wrapped collection in role: InstanceBean.ibmProducts
27609 [Thread-11] DEBUG org.hibernate.event.def.DefaultFlushEntityEventListener - Updating entity: [InstanceBean#269-1]
27609 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [InstanceBean.businessUsage#269-1], was: [<unreferenced>] (initialized)
27609 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [InstanceBean.functionalDomains#269-1], was: [<unreferenced>] (initialized)
27609 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [InstanceBean.hostingServices#269-1], was: [<unreferenced>] (initialized)
27609 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [InstanceBean.ibmProducts#269-1], was: [<unreferenced>] (initialized)
27609 [Thread-11] DEBUG org.hibernate.event.def.DefaultFlushEntityEventListener - Updating entity: [com.db.gto.tms.agr.bean.model.components.BusinessUsageBean#0]
27609 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - Processing unreferenced collections
27609 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - Scheduling collection removes/(re)creates/updates
27609 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - Flushed: 0 insertions, 3 updates, 0 deletions to 75 objects
27609 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - Flushed: 10 (re)creations, 0 updates, 28 removals to 19 collections
27609 [Thread-11] DEBUG org.hibernate.pretty.Printer - listing entities:
27609 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=240, beanId=24, name=SPC}
27609 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=290, beanId=29, name=ASG/PCC Reporting}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.components.CountryBean{sortOrder=160, beanId=4, name=Germany, isoCode=null}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=410, beanId=41, name=IA2 Editor}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=430, beanId=43, name=BAT user}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=260, beanId=26, name=Lotus PMO}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=230, beanId=23, name=IT/I}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.UserBean{phone=+49(69)910-42491, validInGroupDirectory=true, systemAccount=false, valid=true, lastLoginTimestamp=2005-06-24 17:17:57, roles=[dbRAMM_ITContact, TISO, ITAIR], firstName=Andrea, groupDirectoryId=2006452, lastName=Zimmermann, country=null, email=andrea.zimmermann@db.com, ubrNode=com.db.gto.tms.agr.bean.model.tree.UBRNode#G_6444, beanId=5220, activated=true}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=380, beanId=38, name=DR Project ITS Visitor Only}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode{nodeId=F_1007, valid=true, official=true, artificial=false, name=Research Creation, parent=com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode#F_1001, children=<uninitialized>}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=210, beanId=21, name=InfoSec Read Only (non BISO/TISO)}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=310, beanId=31, name=IRM/EMEA ITS User}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.UserBean{phone=+49(69)910-65992, validInGroupDirectory=true, systemAccount=false, valid=true, lastLoginTimestamp=2004-11-04 09:47:45, roles=[], firstName=Stephan, groupDirectoryId=94563, lastName=Welker, country=null, email=stephan.welker@db.com, ubrNode=com.db.gto.tms.agr.bean.model.tree.UBRNode#G_6444, beanId=470, activated=true}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=70, beanId=7, name=not used}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=220, beanId=22, name=InfoSec Editor (non BISO/TISO)}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=90, beanId=9, name=ITAIR}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=200, beanId=20, name=ARCT}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=50, beanId=5, name=Report}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.datacenter.DeutscheBankDataCenterBean{country=com.db.gto.tms.agr.bean.model.components.CountryBean#4, provider=Hosting by IBM BS, beanId=14, name=Eschborn, Data Center}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=400, beanId=40, name=FIRE Project ITS User}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.HostingProviderBean{sortOrder=50, beanId=5, name=Hosting by GTO CTO}
27625 [Thread-11] DEBUG org.hibernate.pretty.Printer - more......
27641 [Thread-11] DEBUG org.hibernate.event.def.DefaultDirtyCheckEventListener - session dirty
27641 [Thread-11] INFO com.db.gto.tms.agr.dao.types.BetterHibernateTemplate - Session is dirty
27641 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - flushing session
27641 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - processing flush-time cascades
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - done deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27641 [Thread-11] DEBUG org.hibernate.engine.Cascades - deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27656 [Thread-11] DEBUG org.hibernate.engine.Cascades - done deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27656 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27656 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27656 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27656 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27656 [Thread-11] DEBUG org.hibernate.engine.Cascades - deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27656 [Thread-11] DEBUG org.hibernate.engine.Cascades - done deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27656 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27656 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27656 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27656 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: PersonBean
27656 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: PersonBean
27656 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: ApplicationBean
27656 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_SAVE_UPDATE for collection: ApplicationBean.instances
27656 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascading to saveOrUpdate: InstanceBean
27656 [Thread-11] DEBUG org.hibernate.event.def.AbstractSaveEventListener - persistent instance of: InstanceBean
27656 [Thread-11] DEBUG org.hibernate.event.def.DefaultSaveOrUpdateEventListener - ignoring persistent instance
27656 [Thread-11] DEBUG org.hibernate.event.def.DefaultSaveOrUpdateEventListener - object already associated with session: [InstanceBean#269-1]
27656 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_SAVE_UPDATE for collection: ApplicationBean.instances
27672 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: ApplicationBean
27672 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: InstanceBean
27672 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_SAVE_UPDATE for collection: InstanceBean.businessUsage
27672 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascading to saveOrUpdate: com.db.gto.tms.agr.bean.model.components.BusinessUsageBean
27672 [Thread-11] DEBUG org.hibernate.event.def.AbstractSaveEventListener - persistent instance of: com.db.gto.tms.agr.bean.model.components.BusinessUsageBean
27672 [Thread-11] DEBUG org.hibernate.event.def.DefaultSaveOrUpdateEventListener - ignoring persistent instance
27672 [Thread-11] DEBUG org.hibernate.event.def.DefaultSaveOrUpdateEventListener - object already associated with session: [com.db.gto.tms.agr.bean.model.components.BusinessUsageBean#0]
27672 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_SAVE_UPDATE for collection: InstanceBean.businessUsage
27672 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_SAVE_UPDATE for collection: InstanceBean.hostingServices
27672 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascading to saveOrUpdate: com.db.gto.tms.agr.bean.model.datacenter.ExternalDataCenterBean
27672 [Thread-11] DEBUG org.hibernate.event.def.AbstractSaveEventListener - persistent instance of: com.db.gto.tms.agr.bean.model.datacenter.ExternalDataCenterBean
27672 [Thread-11] DEBUG org.hibernate.event.def.DefaultSaveOrUpdateEventListener - ignoring persistent instance
27672 [Thread-11] DEBUG org.hibernate.event.def.DefaultSaveOrUpdateEventListener - object already associated with session: [com.db.gto.tms.agr.bean.model.datacenter.DeutscheBankDataCenterBean#14]
27672 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_SAVE_UPDATE for collection: InstanceBean.hostingServices
27672 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_SAVE_UPDATE for collection: InstanceBean.ibmProducts
27672 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascading to saveOrUpdate: com.db.gto.tms.agr.bean.model.components.IBMProductBean
27672 [Thread-11] DEBUG org.hibernate.event.def.AbstractSaveEventListener - persistent instance of: com.db.gto.tms.agr.bean.model.components.IBMProductBean
27672 [Thread-11] DEBUG org.hibernate.event.def.DefaultSaveOrUpdateEventListener - ignoring persistent instance
27687 [Thread-11] DEBUG org.hibernate.event.def.DefaultSaveOrUpdateEventListener - object already associated with session: [com.db.gto.tms.agr.bean.model.components.IBMProductBean#EKUDFLOGA]
27687 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_SAVE_UPDATE for collection: InstanceBean.ibmProducts
27687 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: InstanceBean
27687 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - dirty checking collections
27687 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - Flushing entities and processing referenced collections
27687 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [PersonBean.roles#297], was: [PersonBean.roles#297] (initialized)
27687 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [PersonBean.roles#6781], was: [PersonBean.roles#6781] (initialized)
27687 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [PersonBean.roles#2677], was: [PersonBean.roles#2677] (initialized)
27687 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [PersonBean.roles#5220], was: [PersonBean.roles#5220] (initialized)
27687 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children#F_1007], was: [com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children#F_1007] (uninitialized)
27687 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children#F_1038], was: [com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children#F_1038] (uninitialized)
27687 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children#F_1142], was: [com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children#F_1142] (uninitialized)
27687 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [PersonBean.roles#470], was: [PersonBean.roles#470] (initialized)
27687 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [PersonBean.roles#8270], was: [PersonBean.roles#8270] (initialized)
27687 [Thread-11] DEBUG org.hibernate.event.def.DefaultFlushEntityEventListener - Updating entity: [ApplicationBean#269]
27687 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [ApplicationBean.instances#269], was: [<unreferenced>] (initialized)
27687 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [ApplicationBean.aliases#269], was: [<unreferenced>] (initialized)
27703 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [ApplicationBean.databases#269], was: [<unreferenced>] (initialized)
27703 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [ApplicationBean.operatingSystems#269], was: [<unreferenced>] (initialized)
27703 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [ApplicationBean.productionSoftware#269], was: [<unreferenced>] (initialized)
27703 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [ApplicationBean.programmingLanguages#269], was: [<unreferenced>] (initialized)
27703 [Thread-11] DEBUG org.hibernate.event.def.DefaultFlushEntityEventListener - Updating entity: [InstanceBean#269-1]
27703 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [InstanceBean.businessUsage#269-1], was: [<unreferenced>] (initialized)
27703 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [InstanceBean.functionalDomains#269-1], was: [<unreferenced>] (initialized)
27703 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [InstanceBean.hostingServices#269-1], was: [<unreferenced>] (initialized)
27703 [Thread-11] DEBUG org.hibernate.engine.Collections - Collection found: [InstanceBean.ibmProducts#269-1], was: [<unreferenced>] (initialized)
27703 [Thread-11] DEBUG org.hibernate.event.def.DefaultFlushEntityEventListener - Updating entity: [com.db.gto.tms.agr.bean.model.components.BusinessUsageBean#0]
27703 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - Processing unreferenced collections
27719 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - Scheduling collection removes/(re)creates/updates
27719 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - Flushed: 0 insertions, 3 updates, 0 deletions to 75 objects
27719 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - Flushed: 10 (re)creations, 0 updates, 28 removals to 19 collections
27719 [Thread-11] DEBUG org.hibernate.pretty.Printer - listing entities:
27719 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=240, beanId=24, name=SPC}
27719 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=290, beanId=29, name=ASG/PCC Reporting}
27719 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.components.CountryBean{sortOrder=160, beanId=4, name=Germany, isoCode=null}
27719 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=410, beanId=41, name=IA2 Editor}
27719 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=430, beanId=43, name=BAT user}
27719 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=260, beanId=26, name=Lotus PMO}
27719 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=230, beanId=23, name=IT/I}
27719 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.UserBean{phone=+49(69)910-42491, validInGroupDirectory=true, systemAccount=false, valid=true, lastLoginTimestamp=2005-06-24 17:17:57, roles=[dbRAMM_ITContact, TISO, ITAIR], firstName=Andrea, groupDirectoryId=2006452, lastName=Zimmermann, country=null, email=andrea.zimmermann@db.com, ubrNode=com.db.gto.tms.agr.bean.model.tree.UBRNode#G_6444, beanId=5220, activated=true}
27719 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=380, beanId=38, name=DR Project ITS Visitor Only}
27719 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode{nodeId=F_1007, valid=true, official=true, artificial=false, name=Research Creation, parent=com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode#F_1001, children=<uninitialized>}
27734 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=210, beanId=21, name=InfoSec Read Only (non BISO/TISO)}
27734 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=310, beanId=31, name=IRM/EMEA ITS User}
27734 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.UserBean{phone=+49(69)910-65992, validInGroupDirectory=true, systemAccount=false, valid=true, lastLoginTimestamp=2004-11-04 09:47:45, roles=[], firstName=Stephan, groupDirectoryId=94563, lastName=Welker, country=null, email=stephan.welker@db.com, ubrNode=com.db.gto.tms.agr.bean.model.tree.UBRNode#G_6444, beanId=470, activated=true}
27734 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=70, beanId=7, name=not used}
27734 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=220, beanId=22, name=InfoSec Editor (non BISO/TISO)}
27734 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=90, beanId=9, name=ITAIR}
27734 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=200, beanId=20, name=ARCT}
27734 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=50, beanId=5, name=Report}
27734 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.datacenter.DeutscheBankDataCenterBean{country=com.db.gto.tms.agr.bean.model.components.CountryBean#4, provider=Hosting by IBM BS, beanId=14, name=Eschborn, Data Center}
27734 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.RoleBean{sortOrder=400, beanId=40, name=FIRE Project ITS User}
27734 [Thread-11] DEBUG org.hibernate.pretty.Printer - com.db.gto.tms.agr.bean.model.enums.HostingProviderBean{sortOrder=50, beanId=5, name=Hosting by GTO CTO}
27734 [Thread-11] DEBUG org.hibernate.pretty.Printer - more......
27734 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - executing flush
27734 [Thread-11] DEBUG org.hibernate.cache.ReadWriteCache - Invalidating: ApplicationBean.instances#269
27734 [Thread-11] DEBUG org.hibernate.cache.EhCache - key: ApplicationBean.instances#269
27734 [Thread-11] DEBUG org.hibernate.cache.EhCache - Element for ApplicationBean.instances#269 is null
27734 [Thread-11] DEBUG org.hibernate.cache.ReadWriteCache - Invalidating: ApplicationBean.instances#269
27734 [Thread-11] DEBUG org.hibernate.cache.EhCache - key: ApplicationBean.instances#269
27750 [Thread-11] DEBUG org.hibernate.cache.UpdateTimestampsCache - Pre-invalidating space [VH_APP]
27750 [Thread-11] DEBUG org.hibernate.cache.ReadWriteCache - Invalidating: ApplicationBean#269
27750 [Thread-11] DEBUG org.hibernate.cache.EhCache - key: ApplicationBean#269
27750 [Thread-11] DEBUG org.hibernate.cache.EhCache - Element for ApplicationBean#269 is null
27750 [Thread-11] DEBUG org.hibernate.persister.entity.BasicEntityPersister - Updating entity: [ApplicationBean#269]
27750 [Thread-11] DEBUG org.hibernate.jdbc.AbstractBatcher - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
27750 [Thread-11] DEBUG org.hibernate.SQL - update VH_APP set IS_APPROVED=?, IS_DELETED=?, APP_DESCRIPTION=?, DESKTOPAPP_ID=?, LAST_UPDATE_PERSON_ID=?, LAST_UPDATE_TIMESTAMP=?, LIFESTATUS_ID=?, LOTUSAPP_ID=?, APP_NAME=?, THIRDPARTYAPP_ID=? where APP_ID=?
27750 [Thread-11] DEBUG org.hibernate.jdbc.AbstractBatcher - preparing statement
27750 [Thread-11] DEBUG org.hibernate.persister.entity.BasicEntityPersister - Dehydrating entity: [ApplicationBean#269]
27750 [Thread-11] DEBUG org.hibernate.type.BooleanType - binding 'false' to parameter: 1
27750 [Thread-11] DEBUG org.hibernate.type.BooleanType - binding 'false' to parameter: 2
27750 [Thread-11] DEBUG org.hibernate.type.StringType - binding '[John Test 2] Lohn- und Gehaltsabrechnungssystem - ab Januar 2004 'Read only ohne weitere Batchverarbeitung'' to parameter: 3
27766 [Thread-11] DEBUG org.hibernate.impl.SessionImpl - find: from DesktopApplicationBean
27766 [Thread-11] DEBUG org.hibernate.engine.QueryParameters - named parameters: {}
27766 [Thread-11] DEBUG org.hibernate.hql.ast.QueryTranslatorImpl - parse() - HQL: from com.db.gto.tms.agr.bean.model.enums.DesktopApplicationBean
27766 [Thread-11] DEBUG org.hibernate.hql.ast.AST - --- HQL AST ---
\-[QUERY] 'query'
\-[SELECT_FROM] 'SELECT_FROM'
\-[FROM] 'from'
\-[RANGE] 'RANGE'
\-[DOT] '.'
+-[DOT] '.'
| +-[DOT] '.'
| | +-[DOT] '.'
| | | +-[DOT] '.'
| | | | +-[DOT] '.'
| | | | | +-[DOT] '.'
| | | | | | +-[DOT] '.'
| | | | | | | +-[IDENT] 'com'
| | | | | | | \-[IDENT] 'db'
| | | | | | \-[IDENT] 'gto'
| | | | | \-[IDENT] 'tms'
| | | | \-[IDENT] 'agr'
| | | \-[IDENT] 'bean'
| | \-[IDENT] 'model'
| \-[IDENT] 'enums'
\-[IDENT] 'DesktopApplicationBean'

27766 [Thread-11] DEBUG org.hibernate.hql.ast.ErrorCounter - throwQueryException() : no errors
27766 [Thread-11] DEBUG org.hibernate.hql.antlr.HqlSqlBaseWalker - query() << begin, level = 1
27766 [Thread-11] DEBUG org.hibernate.hql.ast.FromElement - FromClause{level=1} : com.db.gto.tms.agr.bean.model.enums.DesktopApplicationBean (no alias) -> desktopapp0_
27766 [Thread-11] DEBUG org.hibernate.hql.antlr.HqlSqlBaseWalker - query() : finishing up , level = 1
27766 [Thread-11] DEBUG org.hibernate.hql.ast.HqlSqlWalker - processQuery() : ( SELECT ( FromClause{level=1} VH_DESKTOPAPP desktopapp0_ ) )
27766 [Thread-11] DEBUG org.hibernate.hql.ast.HqlSqlWalker - Derived SELECT clause created.
27781 [Thread-11] DEBUG org.hibernate.hql.ast.JoinProcessor - Using FROM fragment [VH_DESKTOPAPP desktopapp0_]
27781 [Thread-11] DEBUG org.hibernate.hql.antlr.HqlSqlBaseWalker - query() >> end, level = 1
27781 [Thread-11] DEBUG org.hibernate.hql.ast.AST - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (VH_DESKTOPAPP)
+-[SELECT_CLAUSE] SelectClause: '{derived select clause}'
| +-[SELECT_EXPR] SelectExpressionImpl: 'desktopapp0_.DESKTOPAPP_ID as DESKTOPAPP1_' {FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=VH_DESKTOPAPP,tableAlias=desktopapp0_,colums={,className=com.db.gto.tms.agr.bean.model.enums.DesktopApplicationBean}}}
| \-[SQL_TOKEN] SqlFragment: 'desktopapp0_.DESKTOPAPP_NAME as DESKTOPAPP2_46_, desktopapp0_.SORTORDER as SORTORDER46_'
\-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[], fromElementByTableAlias=[desktopapp0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
\-[FROM_FRAGMENT] FromElement: 'VH_DESKTOPAPP desktopapp0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=VH_DESKTOPAPP,tableAlias=desktopapp0_,colums={,className=com.db.gto.tms.agr.bean.model.enums.DesktopApplicationBean}}

27781 [Thread-11] DEBUG org.hibernate.hql.ast.ErrorCounter - throwQueryException() : no errors
27781 [Thread-11] DEBUG org.hibernate.hql.ast.QueryTranslatorImpl - HQL: from com.db.gto.tms.agr.bean.model.enums.DesktopApplicationBean
27781 [Thread-11] DEBUG org.hibernate.hql.ast.QueryTranslatorImpl - SQL: select desktopapp0_.DESKTOPAPP_ID as DESKTOPAPP1_, desktopapp0_.DESKTOPAPP_NAME as DESKTOPAPP2_46_, desktopapp0_.SORTORDER as SORTORDER46_ from VH_DESKTOPAPP desktopapp0_
27781 [Thread-11] DEBUG org.hibernate.hql.ast.ErrorCounter - throwQueryException() : no errors
27781 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - flushing session
27781 [Thread-11] DEBUG org.hibernate.event.def.AbstractFlushingEventListener - processing flush-time cascades
27781 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27781 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27781 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27797 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27797 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27797 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27797 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27797 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.UserBean
27797 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27797 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27797 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27797 [Thread-11] DEBUG org.hibernate.engine.Cascades - deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27797 [Thread-11] DEBUG org.hibernate.engine.Cascades - done deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27797 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27797 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27797 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27797 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27812 [Thread-11] DEBUG org.hibernate.engine.Cascades - deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27812 [Thread-11] DEBUG org.hibernate.engine.Cascades - done deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27812 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27812 [Thread-11] DEBUG org.hibernate.engine.Cascades - processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27812 [Thread-11] DEBUG org.hibernate.engine.Cascades - cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27812 [Thread-11] DEBUG org.hibernate.engine.Cascades - done cascade ACTION_SAVE_UPDATE for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27812 [Thread-11] DEBUG org.hibernate.engine.Cascades - deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27812 [Thread-11] DEBUG org.hibernate.engine.Cascades - done deleting orphans for collection: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode.children
27812 [Thread-11] DEBUG org.hibernate.engine.Cascades - done processing cascade ACTION_SAVE_UPDATE for: com.db.gto.tms.agr.bean.model.tree.FunctionalDomainNode
27812 [Thread-11] DEB


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.