-->
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: What about concurrency?
PostPosted: Thu Jan 27, 2005 11:11 pm 
Newbie

Joined: Fri Oct 01, 2004 1:29 pm
Posts: 5
Location: Brasil
Hi all,

I read all topics relevant to my problem on this forum, in the FAQ's, etc..

Please someone can help me?

First, read this : ConcurrentModificationException when iterating over sets

Then, this:

Code:
<hibernate-mapping package="br.com.csn.suporte.model" default-cascade="save-update">

<class name="Categoria" table="CATEGORIA">

   <!-- Id -->
   <id name="id"
      type="long"
      column="ID_CATEGORIA"
      unsaved-value="0"
      access="net.sf.hibernate.property.DirectPropertyAccessor">
      <generator class="native"/>
   </id>

   <!-- Versão -->
   <version name="version"
          column="VERSION"
          access="net.sf.hibernate.property.DirectPropertyAccessor"/>

   <property   name="nome"
            type="string"
                access="net.sf.hibernate.property.DirectPropertyAccessor">
      <column name="NOME"
            not-null="true"
            length="255"
            unique-key="CAT_NOME_E_CATEGORIA_PAI_UK"/>
   </property>
   
   <property   name="descricao"
            type="string"
            column="DESCRICAO"
            length="4000"
            not-null="false"
                access="net.sf.hibernate.property.DirectPropertyAccessor"/>

   <property   name="dataCriacao"
            column="DATA_CRIACAO"
            type="java.util.Date"
            update="false"
            not-null="true"
            access="net.sf.hibernate.property.DirectPropertyAccessor"/>

   <many-to-one name="categoriaPai"
             cascade="none"
             outer-join="false"
             foreign-key="CAT_ID_CATEGORIA_PAI_FK"
                 access="net.sf.hibernate.property.DirectPropertyAccessor">
      <column name="ID_CATEGORIA_PAI"
            not-null="false"
            unique-key="CAT_NOME_E_CATEGORIA_PAI_UK"/>
   </many-to-one>

   <set    name="categoriasFilhas"
         cascade="all-delete-orphan"
         inverse="true"
         lazy="true"
         batch-size="10"
         access="net.sf.hibernate.property.DirectPropertyAccessor">
      <key column="ID_CATEGORIA_PAI"/>
      <one-to-many class="Categoria"/>
   </set>

    <!-- Produtos -->
   <set    name="produtos"
         cascade="all-delete-orphan"
         inverse="true"
         lazy="true"
            access="net.sf.hibernate.property.DirectPropertyAccessor">
        <key column="ID_CATEGORIA"/>
        <one-to-many class="Produto"/>
   </set>

</class>

</hibernate-mapping>



[code][suporte] DEBUG [http-80-Processor24] JdbcTemplate.query(401) | Executing SQL query [SELECT usuario, senha, ativo FROM ace_usuario WHERE usuario = ?]
[suporte] DEBUG [http-80-Processor24] DataSourceUtils.doGetConnection(176) | Opening JDBC connection
[suporte] DEBUG [http-80-Processor24] StatementCreatorUtils.setParameterValue(81) | Setting SQL statement parameter value; columnIndex=1, parameter value='caetano', valueClass=java.lang.String, sqlType=12
[suporte] DEBUG [http-80-Processor24] DataSourceUtils.doCloseConnectionIfNecessary(314) | Closing JDBC connection
[suporte] DEBUG [http-80-Processor24] JdbcTemplate.query(401) | Executing SQL query [SELECT usuario, permissao FROM ace_usu_permissao WHERE usuario = ?]
[suporte] DEBUG [http-80-Processor24] DataSourceUtils.doGetConnection(176) | Opening JDBC connection
[suporte] DEBUG [http-80-Processor24] StatementCreatorUtils.setParameterValue(81) | Setting SQL statement parameter value; columnIndex=1, parameter value='caetano', valueClass=java.lang.String, sqlType=12
[suporte] DEBUG [http-80-Processor24] DataSourceUtils.doCloseConnectionIfNecessary(314) | Closing JDBC connection
[suporte] DEBUG [http-80-Processor24] AbstractApplicationContext.publishEvent(216) | Publishing event in context [org.springframework.web.context.support.XmlWebApplicationContext;hashCode=14647882]: net.sf.acegisecurity.providers.dao.event.AuthenticationSuccessEvent[source=net.sf.acegisecurity.providers.UsernamePasswordAuthenticationToken@6755b6: Username: caetano; Password: [PROTECTED]; Authenticated: true; Details: 127.0.0.1; Granted Authorities: admin]
[suporte] DEBUG [http-80-Processor24] AbstractApplicationContext.publishEvent(216) | Publishing event in context [org.springframework.web.context.support.XmlWebApplicationContext;hashCode=14647882]: net.sf.acegisecurity.intercept.event.AuthorizedEvent[source=FilterInvocation: URL: /editCategoria.jspa?from=list&id=2]
[suporte] DEBUG [http-80-Processor24] OpenSessionInViewFilter.lookupSessionFactory(199) | Using session factory 'sessionFactory' for OpenSessionInViewFilter
[suporte] DEBUG [http-80-Processor24] AbstractBeanFactory.getBean(198) | Returning cached instance of singleton bean 'sessionFactory'
[suporte] DEBUG [http-80-Processor24] AbstractBeanFactory.getObjectForSharedInstance(793) | Bean with name 'sessionFactory' is a factory bean
[suporte] DEBUG [http-80-Processor24] OpenSessionInViewFilter.doFilterInternal(154) | Opening single Hibernate session in OpenSessionInViewFilter
[suporte] DEBUG [http-80-Processor24] SessionFactoryUtils.getSession(311) | Opening Hibernate session
[suporte] DEBUG [http-80-Processor24] SessionImpl.<init>(558) | opened session
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.bindResource(147) | Bound value [org.springframework.orm.hibernate.SessionHolder@b4855e] for key [net.sf.hibernate.impl.SessionFactoryImpl@eb607d] to thread [http-80-Processor24]
[suporte] DEBUG [http-80-Processor24] DispatcherServlet.getHandler(711) | Testing handler map [org.springframework.web.servlet.handler.SimpleUrlHandlerMapping@1e30857] in DispatcherServlet with name 'action'
[suporte] DEBUG [http-80-Processor24] AbstractUrlHandlerMapping.getHandlerInternal(115) | Looking up handler for [/editCategoria.jspa]
[suporte] DEBUG [http-80-Processor24] DispatcherServlet.getHandlerAdapter(736) | Testing handler adapter [org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter@1cda81e]
[suporte] DEBUG [http-80-Processor24] DispatcherServlet.getLastModified(679) | Last-Modified value for [/suporte/editCategoria.jspa] is [-1]
[suporte] DEBUG [http-80-Processor24] DispatcherServlet.doService(517) | DispatcherServlet with name 'action' received request for [/suporte/editCategoria.jspa]
[suporte] DEBUG [http-80-Processor24] DispatcherServlet.getHandlerAdapter(736) | Testing handler adapter [org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter@1cda81e]
[suporte] DEBUG [http-80-Processor24] AbstractFormController.showNewForm(276) | Displaying new form
[suporte] DEBUG [http-80-Processor24] TransactionAspectSupport.createTransactionIfNecessary(197) | Getting transaction for method 'getObject' in class [br.com.csn.suporte.service.Manager]
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.getResource(122) | Retrieved value [org.springframework.orm.hibernate.SessionHolder@b4855e] for key [net.sf.hibernate.impl.SessionFactoryImpl@eb607d] bound to thread [http-80-Processor24]
[suporte] DEBUG [http-80-Processor24] HibernateTransactionManager.doGetTransaction(346) | Found thread-bound session [net.sf.hibernate.impl.SessionImpl@1a012ff] for Hibernate transaction
[suporte] DEBUG [http-80-Processor24] AbstractPlatformTransactionManager.getTransaction(195) | Using transaction object [org.springframework.orm.hibernate.HibernateTransactionManager$HibernateTransactionObject@3f4f44]
[suporte] DEBUG [http-80-Processor24] AbstractPlatformTransactionManager.getTransaction(269) | Creating new transaction
[suporte] DEBUG [http-80-Processor24] DataSourceUtils.prepareConnectionForTransaction(205) | Setting JDBC connection [org.apache.tomcat.dbcp.dbcp.PoolableConnection@dd23cf] read-only
[suporte] DEBUG [http-80-Processor24] JDBCTransaction.begin(37) | begin
[suporte] DEBUG [http-80-Processor24] JDBCTransaction.begin(41) | current autocommit status:true
[suporte] DEBUG [http-80-Processor24] JDBCTransaction.begin(43) | disabling autocommit
[suporte] DEBUG [http-80-Processor24] HibernateTransactionManager.doBegin(413) | Exposing Hibernate transaction as JDBC transaction [org.apache.tomcat.dbcp.dbcp.PoolableConnection@dd23cf]
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.bindResource(147) | Bound value [org.springframework.jdbc.datasource.ConnectionHolder@6cf97c] for key [org.apache.tomcat.dbcp.dbcp.BasicDataSource@1984f7d] to thread [http-80-Processor24]
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.initSynchronization(199) | Initializing transaction synchronization
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.getResource(122) | Retrieved value [org.springframework.orm.hibernate.SessionHolder@b4855e] for key [net.sf.hibernate.impl.SessionFactoryImpl@eb607d] bound to thread [http-80-Processor24]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoadByClass(1995) | loading [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2093) | attempting to resolve [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2129) | object not resolved in any cache [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] EntityPersister.load(412) | Materializing entity: [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] BatcherImpl.logOpenPreparedStatement(203) | about to open: 0 open PreparedStatements, 0 open ResultSets
[suporte] DEBUG [http-80-Processor24] BatcherImpl.log(229) | select categoria0_.ID_CATEGORIA as ID_CATEG1_0_, categoria0_.VERSION as VERSION0_, categoria0_.NOME as NOME0_, categoria0_.DESCRICAO as DESCRICAO0_, categoria0_.DATA_CRIACAO as DATA_CRI5_0_, categoria0_.ID_CATEGORIA_PAI as ID_CATEG6_0_ from CATEGORIA categoria0_ where categoria0_.ID_CATEGORIA=?
[suporte] DEBUG [http-80-Processor24] BatcherImpl.getPreparedStatement(252) | preparing statement
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeSet(46) | binding '2' to parameter: 1
[suporte] DEBUG [http-80-Processor24] Loader.doQuery(277) | processing result set
[suporte] DEBUG [http-80-Processor24] Loader.getRow(480) | result row: 2
[suporte] DEBUG [http-80-Processor24] Loader.loadFromResultSet(611) | Initializing object from ResultSet: 2
[suporte] DEBUG [http-80-Processor24] Loader.hydrate(680) | Hydrating entity: br.com.csn.suporte.model.Categoria#2
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '2' as column: VERSION0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning 'Sub-sistemas' as column: NOME0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning 'sub de sistemas...' as column: DESCRICAO0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '2005-01-25 11:43:47' as column: DATA_CRI5_0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '1' as column: ID_CATEG6_0_
[suporte] DEBUG [http-80-Processor24] SessionImpl.postHydrate(1919) | Version: 2
[suporte] DEBUG [http-80-Processor24] Loader.doQuery(294) | done processing result set (1 rows)
[suporte] DEBUG [http-80-Processor24] BatcherImpl.logClosePreparedStatement(210) | done closing: 0 open PreparedStatements, 0 open ResultSets
[suporte] DEBUG [http-80-Processor24] BatcherImpl.closePreparedStatement(272) | closing statement
[suporte] DEBUG [http-80-Processor24] Loader.initializeEntitiesAndCollections(314) | total objects hydrated: 1
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeEntity(2215) | resolving associations for [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoadByClass(1995) | loading [br.com.csn.suporte.model.Categoria#1]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2093) | attempting to resolve [br.com.csn.suporte.model.Categoria#1]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2129) | object not resolved in any cache [br.com.csn.suporte.model.Categoria#1]
[suporte] DEBUG [http-80-Processor24] EntityPersister.load(412) | Materializing entity: [br.com.csn.suporte.model.Categoria#1]
[suporte] DEBUG [http-80-Processor24] BatcherImpl.logOpenPreparedStatement(203) | about to open: 0 open PreparedStatements, 0 open ResultSets
[suporte] DEBUG [http-80-Processor24] BatcherImpl.log(229) | select categoria0_.ID_CATEGORIA as ID_CATEG1_0_, categoria0_.VERSION as VERSION0_, categoria0_.NOME as NOME0_, categoria0_.DESCRICAO as DESCRICAO0_, categoria0_.DATA_CRIACAO as DATA_CRI5_0_, categoria0_.ID_CATEGORIA_PAI as ID_CATEG6_0_ from CATEGORIA categoria0_ where categoria0_.ID_CATEGORIA=?
[suporte] DEBUG [http-80-Processor24] BatcherImpl.getPreparedStatement(252) | preparing statement
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeSet(46) | binding '1' to parameter: 1
[suporte] DEBUG [http-80-Processor24] Loader.doQuery(277) | processing result set
[suporte] DEBUG [http-80-Processor24] Loader.getRow(480) | result row: 1
[suporte] DEBUG [http-80-Processor24] Loader.loadFromResultSet(611) | Initializing object from ResultSet: 1
[suporte] DEBUG [http-80-Processor24] Loader.hydrate(680) | Hydrating entity: br.com.csn.suporte.model.Categoria#1
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '7' as column: VERSION0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning 'Sistemas' as column: NOME0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '' as column: DESCRICAO0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '2005-01-24 23:48:24' as column: DATA_CRI5_0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(64) | returning null as column: ID_CATEG6_0_
[suporte] DEBUG [http-80-Processor24] SessionImpl.postHydrate(1919) | Version: 7
[suporte] DEBUG [http-80-Processor24] Loader.doQuery(294) | done processing result set (1 rows)
[suporte] DEBUG [http-80-Processor24] BatcherImpl.logClosePreparedStatement(210) | done closing: 0 open PreparedStatements, 0 open ResultSets
[suporte] DEBUG [http-80-Processor24] BatcherImpl.closePreparedStatement(272) | closing statement
[suporte] DEBUG [http-80-Processor24] Loader.initializeEntitiesAndCollections(314) | total objects hydrated: 1
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeEntity(2215) | resolving associations for [br.com.csn.suporte.model.Categoria#1]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getCollection(3982) | creating collection wrapper:[br.com.csn.suporte.model.Categoria.categoriasFilhas#1]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getCollection(3982) | creating collection wrapper:[br.com.csn.suporte.model.Categoria.produtos#1]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeEntity(2246) | done materializing entity [br.com.csn.suporte.model.Categoria#1]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getCollection(3982) | creating collection wrapper:[br.com.csn.suporte.model.Categoria.categoriasFilhas#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getCollection(3982) | creating collection wrapper:[br.com.csn.suporte.model.Categoria.produtos#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeEntity(2246) | done materializing entity [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeNonLazyCollections(3149) | initializing non-lazy collections
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.getResource(122) | Retrieved value [org.springframework.orm.hibernate.SessionHolder@b4855e] for key [net.sf.hibernate.impl.SessionFactoryImpl@eb607d] bound to thread [http-80-Processor24]
[suporte] DEBUG [http-80-Processor24] TransactionAspectSupport.doCommitTransactionAfterReturning(240) | Invoking commit for transaction on method 'getObject' in class [br.com.csn.suporte.service.Manager]
[suporte] DEBUG [http-80-Processor24] AbstractPlatformTransactionManager.triggerBeforeCommit(498) | Triggering beforeCommit synchronization
[suporte] DEBUG [http-80-Processor24] AbstractPlatformTransactionManager.triggerBeforeCompletion(513) | Triggering beforeCompletion synchronization
[suporte] DEBUG [http-80-Processor24] AbstractPlatformTransactionManager.commit(375) | Initiating transaction commit
[suporte] DEBUG [http-80-Processor24] HibernateTransactionManager.doCommit(460) | Committing Hibernate transaction on session [net.sf.hibernate.impl.SessionImpl@1a012ff]
[suporte] DEBUG [http-80-Processor24] JDBCTransaction.commit(59) | commit
[suporte] DEBUG [http-80-Processor24] SessionImpl.afterTransactionCompletion(594) | transaction completion
[suporte] DEBUG [http-80-Processor24] JDBCTransaction.toggleAutoCommit(103) | re-enabling autocommit
[suporte] DEBUG [http-80-Processor24] AbstractPlatformTransactionManager.triggerAfterCompletion(543) | Triggering afterCompletion synchronization
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.clearSynchronization(239) | Clearing transaction synchronization
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.unbindResource(170) | Removed value [org.springframework.jdbc.datasource.ConnectionHolder@6cf97c] for key [org.apache.tomcat.dbcp.dbcp.BasicDataSource@1984f7d] from thread [http-80-Processor24]
[suporte] DEBUG [http-80-Processor24] DataSourceUtils.resetConnectionAfterTransaction(251) | Resetting read-only flag of connection [org.apache.tomcat.dbcp.dbcp.PoolableConnection@dd23cf]
[suporte] DEBUG [http-80-Processor24] HibernateTransactionManager.doCleanupAfterCompletion(548) | Not closing pre-bound Hibernate session [net.sf.hibernate.impl.SessionImpl@1a012ff] after transaction
[suporte] DEBUG [http-80-Processor24] CachedIntrospectionResults.forClass(96) | Using cached introspection results for class [br.com.csn.suporte.model.Categoria]
[suporte] DEBUG [http-80-Processor24] TransactionAspectSupport.createTransactionIfNecessary(197) | Getting transaction for method 'getObject' in class [br.com.csn.suporte.service.Manager]
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.getResource(122) | Retrieved value [org.springframework.orm.hibernate.SessionHolder@b4855e] for key [net.sf.hibernate.impl.SessionFactoryImpl@eb607d] bound to thread [http-80-Processor24]
[suporte] DEBUG [http-80-Processor24] HibernateTransactionManager.doGetTransaction(346) | Found thread-bound session [net.sf.hibernate.impl.SessionImpl@1a012ff] for Hibernate transaction
[suporte] DEBUG [http-80-Processor24] AbstractPlatformTransactionManager.getTransaction(195) | Using transaction object [org.springframework.orm.hibernate.HibernateTransactionManager$HibernateTransactionObject@aa23e5]
[suporte] DEBUG [http-80-Processor24] AbstractPlatformTransactionManager.getTransaction(269) | Creating new transaction
[suporte] DEBUG [http-80-Processor24] DataSourceUtils.prepareConnectionForTransaction(205) | Setting JDBC connection [org.apache.tomcat.dbcp.dbcp.PoolableConnection@dd23cf] read-only
[suporte] DEBUG [http-80-Processor24] JDBCTransaction.begin(37) | begin
[suporte] DEBUG [http-80-Processor24] JDBCTransaction.begin(41) | current autocommit status:true
[suporte] DEBUG [http-80-Processor24] JDBCTransaction.begin(43) | disabling autocommit
[suporte] DEBUG [http-80-Processor24] HibernateTransactionManager.doBegin(413) | Exposing Hibernate transaction as JDBC transaction [org.apache.tomcat.dbcp.dbcp.PoolableConnection@dd23cf]
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.bindResource(147) | Bound value [org.springframework.jdbc.datasource.ConnectionHolder@1abcdd] for key [org.apache.tomcat.dbcp.dbcp.BasicDataSource@1984f7d] to thread [http-80-Processor24]
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.initSynchronization(199) | Initializing transaction synchronization
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.getResource(122) | Retrieved value [org.springframework.orm.hibernate.SessionHolder@b4855e] for key [net.sf.hibernate.impl.SessionFactoryImpl@eb607d] bound to thread [http-80-Processor24]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoadByClass(1995) | loading [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2093) | attempting to resolve [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2109) | resolved object in session cache [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.getResource(122) | Retrieved value [org.springframework.orm.hibernate.SessionHolder@b4855e] for key [net.sf.hibernate.impl.SessionFactoryImpl@eb607d] bound to thread [http-80-Processor24]
[suporte] DEBUG [http-80-Processor24] TransactionAspectSupport.doCommitTransactionAfterReturning(240) | Invoking commit for transaction on method 'getObject' in class [br.com.csn.suporte.service.Manager]
[suporte] DEBUG [http-80-Processor24] AbstractPlatformTransactionManager.triggerBeforeCommit(498) | Triggering beforeCommit synchronization
[suporte] DEBUG [http-80-Processor24] AbstractPlatformTransactionManager.triggerBeforeCompletion(513) | Triggering beforeCompletion synchronization
[suporte] DEBUG [http-80-Processor24] AbstractPlatformTransactionManager.commit(375) | Initiating transaction commit
[suporte] DEBUG [http-80-Processor24] HibernateTransactionManager.doCommit(460) | Committing Hibernate transaction on session [net.sf.hibernate.impl.SessionImpl@1a012ff]
[suporte] DEBUG [http-80-Processor24] JDBCTransaction.commit(59) | commit
[suporte] DEBUG [http-80-Processor24] SessionImpl.afterTransactionCompletion(594) | transaction completion
[suporte] DEBUG [http-80-Processor24] JDBCTransaction.toggleAutoCommit(103) | re-enabling autocommit
[suporte] DEBUG [http-80-Processor24] AbstractPlatformTransactionManager.triggerAfterCompletion(543) | Triggering afterCompletion synchronization
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.clearSynchronization(239) | Clearing transaction synchronization
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.unbindResource(170) | Removed value [org.springframework.jdbc.datasource.ConnectionHolder@1abcdd] for key [org.apache.tomcat.dbcp.dbcp.BasicDataSource@1984f7d] from thread [http-80-Processor24]
[suporte] DEBUG [http-80-Processor24] DataSourceUtils.resetConnectionAfterTransaction(251) | Resetting read-only flag of connection [org.apache.tomcat.dbcp.dbcp.PoolableConnection@dd23cf]
[suporte] DEBUG [http-80-Processor24] HibernateTransactionManager.doCleanupAfterCompletion(548) | Not closing pre-bound Hibernate session [net.sf.hibernate.impl.SessionImpl@1a012ff] after transaction
[suporte] DEBUG [http-80-Processor24] TransactionAspectSupport.createTransactionIfNecessary(197) | Getting transaction for method 'getObjects' in class [br.com.csn.suporte.service.Manager]
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.getResource(122) | Retrieved value [org.springframework.orm.hibernate.SessionHolder@b4855e] for key [net.sf.hibernate.impl.SessionFactoryImpl@eb607d] bound to thread [http-80-Processor24]
[suporte] DEBUG [http-80-Processor24] HibernateTransactionManager.doGetTransaction(346) | Found thread-bound session [net.sf.hibernate.impl.SessionImpl@1a012ff] for Hibernate transaction
[suporte] DEBUG [http-80-Processor24] AbstractPlatformTransactionManager.getTransaction(195) | Using transaction object [org.springframework.orm.hibernate.HibernateTransactionManager$HibernateTransactionObject@1655659]
[suporte] DEBUG [http-80-Processor24] AbstractPlatformTransactionManager.getTransaction(269) | Creating new transaction
[suporte] DEBUG [http-80-Processor24] DataSourceUtils.prepareConnectionForTransaction(205) | Setting JDBC connection [org.apache.tomcat.dbcp.dbcp.PoolableConnection@dd23cf] read-only
[suporte] DEBUG [http-80-Processor24] JDBCTransaction.begin(37) | begin
[suporte] DEBUG [http-80-Processor24] JDBCTransaction.begin(41) | current autocommit status:true
[suporte] DEBUG [http-80-Processor24] JDBCTransaction.begin(43) | disabling autocommit
[suporte] DEBUG [http-80-Processor24] HibernateTransactionManager.doBegin(413) | Exposing Hibernate transaction as JDBC transaction [org.apache.tomcat.dbcp.dbcp.PoolableConnection@dd23cf]
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.bindResource(147) | Bound value [org.springframework.jdbc.datasource.ConnectionHolder@81f03] for key [org.apache.tomcat.dbcp.dbcp.BasicDataSource@1984f7d] to thread [http-80-Processor24]
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.initSynchronization(199) | Initializing transaction synchronization
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.getResource(122) | Retrieved value [org.springframework.orm.hibernate.SessionHolder@b4855e] for key [net.sf.hibernate.impl.SessionFactoryImpl@eb607d] bound to thread [http-80-Processor24]
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.getResource(122) | Retrieved value [org.springframework.orm.hibernate.SessionHolder@b4855e] for key [net.sf.hibernate.impl.SessionFactoryImpl@eb607d] bound to thread [http-80-Processor24]
[suporte] DEBUG [http-80-Processor24] BatcherImpl.logOpenPreparedStatement(203) | about to open: 0 open PreparedStatements, 0 open ResultSets
[suporte] DEBUG [http-80-Processor24] BatcherImpl.log(229) | select this.ID_CATEGORIA as ID_CATEG1_0_, this.VERSION as VERSION0_, this.NOME as NOME0_, this.DESCRICAO as DESCRICAO0_, this.DATA_CRIACAO as DATA_CRI5_0_, this.ID_CATEGORIA_PAI as ID_CATEG6_0_ from CATEGORIA this where 1=1
[suporte] DEBUG [http-80-Processor24] BatcherImpl.getPreparedStatement(252) | preparing statement
[suporte] DEBUG [http-80-Processor24] Loader.doQuery(277) | processing result set
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '1' as column: ID_CATEG1_0_
[suporte] DEBUG [http-80-Processor24] Loader.getRow(480) | result row: 1
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '2' as column: ID_CATEG1_0_
[suporte] DEBUG [http-80-Processor24] Loader.getRow(480) | result row: 2
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '3' as column: ID_CATEG1_0_
[suporte] DEBUG [http-80-Processor24] Loader.getRow(480) | result row: 3
[suporte] DEBUG [http-80-Processor24] Loader.loadFromResultSet(611) | Initializing object from ResultSet: 3
[suporte] DEBUG [http-80-Processor24] Loader.hydrate(680) | Hydrating entity: br.com.csn.suporte.model.Categoria#3
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '1' as column: VERSION0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '5_Sub_sys' as column: NOME0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning 'hehe' as column: DESCRICAO0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '2005-01-28 00:30:01' as column: DATA_CRI5_0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '1' as column: ID_CATEG6_0_
[suporte] DEBUG [http-80-Processor24] SessionImpl.postHydrate(1919) | Version: 1
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '4' as column: ID_CATEG1_0_
[suporte] DEBUG [http-80-Processor24] Loader.getRow(480) | result row: 4
[suporte] DEBUG [http-80-Processor24] Loader.loadFromResultSet(611) | Initializing object from ResultSet: 4
[suporte] DEBUG [http-80-Processor24] Loader.hydrate(680) | Hydrating entity: br.com.csn.suporte.model.Categoria#4
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '0' as column: VERSION0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '3_sub_2' as column: NOME0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '' as column: DESCRICAO0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '2005-01-28 00:30:15' as column: DATA_CRI5_0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '2' as column: ID_CATEG6_0_
[suporte] DEBUG [http-80-Processor24] SessionImpl.postHydrate(1919) | Version: 0
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '5' as column: ID_CATEG1_0_
[suporte] DEBUG [http-80-Processor24] Loader.getRow(480) | result row: 5
[suporte] DEBUG [http-80-Processor24] Loader.loadFromResultSet(611) | Initializing object from ResultSet: 5
[suporte] DEBUG [http-80-Processor24] Loader.hydrate(680) | Hydrating entity: br.com.csn.suporte.model.Categoria#5
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '2' as column: VERSION0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '4_sub_2' as column: NOME0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '' as column: DESCRICAO0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '2005-01-28 00:30:28' as column: DATA_CRI5_0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '2' as column: ID_CATEG6_0_
[suporte] DEBUG [http-80-Processor24] SessionImpl.postHydrate(1919) | Version: 2
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '6' as column: ID_CATEG1_0_
[suporte] DEBUG [http-80-Processor24] Loader.getRow(480) | result row: 6
[suporte] DEBUG [http-80-Processor24] Loader.loadFromResultSet(611) | Initializing object from ResultSet: 6
[suporte] DEBUG [http-80-Processor24] Loader.hydrate(680) | Hydrating entity: br.com.csn.suporte.model.Categoria#6
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '0' as column: VERSION0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '6_sub_5' as column: NOME0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning 'asdad' as column: DESCRICAO0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '2005-01-28 00:30:40' as column: DATA_CRI5_0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '3' as column: ID_CATEG6_0_
[suporte] DEBUG [http-80-Processor24] SessionImpl.postHydrate(1919) | Version: 0
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '7' as column: ID_CATEG1_0_
[suporte] DEBUG [http-80-Processor24] Loader.getRow(480) | result row: 7
[suporte] DEBUG [http-80-Processor24] Loader.loadFromResultSet(611) | Initializing object from ResultSet: 7
[suporte] DEBUG [http-80-Processor24] Loader.hydrate(680) | Hydrating entity: br.com.csn.suporte.model.Categoria#7
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '0' as column: VERSION0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '10_sub_4' as column: NOME0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning 'teste' as column: DESCRICAO0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '2005-01-28 00:30:55' as column: DATA_CRI5_0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '5' as column: ID_CATEG6_0_
[suporte] DEBUG [http-80-Processor24] SessionImpl.postHydrate(1919) | Version: 0
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '8' as column: ID_CATEG1_0_
[suporte] DEBUG [http-80-Processor24] Loader.getRow(480) | result row: 8
[suporte] DEBUG [http-80-Processor24] Loader.loadFromResultSet(611) | Initializing object from ResultSet: 8
[suporte] DEBUG [http-80-Processor24] Loader.hydrate(680) | Hydrating entity: br.com.csn.suporte.model.Categoria#8
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '0' as column: VERSION0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '12_sub_4' as column: NOME0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning 'teste' as column: DESCRICAO0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '2005-01-28 00:31:07' as column: DATA_CRI5_0_
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '5' as column: ID_CATEG6_0_
[suporte] DEBUG [http-80-Processor24] SessionImpl.postHydrate(1919) | Version: 0
[suporte] DEBUG [http-80-Processor24] Loader.doQuery(294) | done processing result set (8 rows)
[suporte] DEBUG [http-80-Processor24] BatcherImpl.logClosePreparedStatement(210) | done closing: 0 open PreparedStatements, 0 open ResultSets
[suporte] DEBUG [http-80-Processor24] BatcherImpl.closePreparedStatement(272) | closing statement
[suporte] DEBUG [http-80-Processor24] Loader.initializeEntitiesAndCollections(314) | total objects hydrated: 6
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeEntity(2215) | resolving associations for [br.com.csn.suporte.model.Categoria#3]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoadByClass(1995) | loading [br.com.csn.suporte.model.Categoria#1]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2093) | attempting to resolve [br.com.csn.suporte.model.Categoria#1]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2109) | resolved object in session cache [br.com.csn.suporte.model.Categoria#1]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getCollection(3982) | creating collection wrapper:[br.com.csn.suporte.model.Categoria.categoriasFilhas#3]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getCollection(3982) | creating collection wrapper:[br.com.csn.suporte.model.Categoria.produtos#3]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeEntity(2246) | done materializing entity [br.com.csn.suporte.model.Categoria#3]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeEntity(2215) | resolving associations for [br.com.csn.suporte.model.Categoria#4]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoadByClass(1995) | loading [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2093) | attempting to resolve [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2109) | resolved object in session cache [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getCollection(3982) | creating collection wrapper:[br.com.csn.suporte.model.Categoria.categoriasFilhas#4]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getCollection(3982) | creating collection wrapper:[br.com.csn.suporte.model.Categoria.produtos#4]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeEntity(2246) | done materializing entity [br.com.csn.suporte.model.Categoria#4]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeEntity(2215) | resolving associations for [br.com.csn.suporte.model.Categoria#5]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoadByClass(1995) | loading [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2093) | attempting to resolve [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2109) | resolved object in session cache [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getCollection(3982) | creating collection wrapper:[br.com.csn.suporte.model.Categoria.categoriasFilhas#5]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getCollection(3982) | creating collection wrapper:[br.com.csn.suporte.model.Categoria.produtos#5]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeEntity(2246) | done materializing entity [br.com.csn.suporte.model.Categoria#5]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeEntity(2215) | resolving associations for [br.com.csn.suporte.model.Categoria#6]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoadByClass(1995) | loading [br.com.csn.suporte.model.Categoria#3]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2093) | attempting to resolve [br.com.csn.suporte.model.Categoria#3]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2109) | resolved object in session cache [br.com.csn.suporte.model.Categoria#3]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getCollection(3982) | creating collection wrapper:[br.com.csn.suporte.model.Categoria.categoriasFilhas#6]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getCollection(3982) | creating collection wrapper:[br.com.csn.suporte.model.Categoria.produtos#6]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeEntity(2246) | done materializing entity [br.com.csn.suporte.model.Categoria#6]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeEntity(2215) | resolving associations for [br.com.csn.suporte.model.Categoria#7]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoadByClass(1995) | loading [br.com.csn.suporte.model.Categoria#5]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2093) | attempting to resolve [br.com.csn.suporte.model.Categoria#5]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2109) | resolved object in session cache [br.com.csn.suporte.model.Categoria#5]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getCollection(3982) | creating collection wrapper:[br.com.csn.suporte.model.Categoria.categoriasFilhas#7]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getCollection(3982) | creating collection wrapper:[br.com.csn.suporte.model.Categoria.produtos#7]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeEntity(2246) | done materializing entity [br.com.csn.suporte.model.Categoria#7]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeEntity(2215) | resolving associations for [br.com.csn.suporte.model.Categoria#8]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoadByClass(1995) | loading [br.com.csn.suporte.model.Categoria#5]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2093) | attempting to resolve [br.com.csn.suporte.model.Categoria#5]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2109) | resolved object in session cache [br.com.csn.suporte.model.Categoria#5]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getCollection(3982) | creating collection wrapper:[br.com.csn.suporte.model.Categoria.categoriasFilhas#8]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getCollection(3982) | creating collection wrapper:[br.com.csn.suporte.model.Categoria.produtos#8]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeEntity(2246) | done materializing entity [br.com.csn.suporte.model.Categoria#8]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeNonLazyCollections(3149) | initializing non-lazy collections
[suporte] DEBUG [http-80-Processor24] TransactionSynchronizationManager.getResource(122) | Retrieved value [org.springframework.orm.hibernate.SessionHolder@b4855e] for key [net.sf.hibernate.impl.SessionFactoryImpl@eb607d] bound to thread [http-80-Processor24]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeCollection(3295) | initializing collection [br.com.csn.suporte.model.Categoria.categoriasFilhas#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeCollection(3296) | checking second-level cache
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeCollection(3302) | collection not cached
[suporte] DEBUG [http-80-Processor24] BatchingCollectionInitializer.initialize(48) | batch loading collection role (small batch): br.com.csn.suporte.model.Categoria.categoriasFilhas
[suporte] DEBUG [http-80-Processor24] BatcherImpl.logOpenPreparedStatement(203) | about to open: 0 open PreparedStatements, 0 open ResultSets
[suporte] DEBUG [http-80-Processor24] BatcherImpl.log(229) | select categorias0_.ID_CATEGORIA_PAI as ID_CATEG6___, categorias0_.ID_CATEGORIA as ID_CATEG1___, categorias0_.ID_CATEGORIA as ID_CATEG1_0_, categorias0_.VERSION as VERSION0_, categorias0_.NOME as NOME0_, categorias0_.DESCRICAO as DESCRICAO0_, categorias0_.DATA_CRIACAO as DATA_CRI5_0_, categorias0_.ID_CATEGORIA_PAI as ID_CATEG6_0_ from CATEGORIA categorias0_ where ((categorias0_.ID_CATEGORIA_PAI=?) or (categorias0_.ID_CATEGORIA_PAI=?) or (categorias0_.ID_CATEGORIA_PAI=?))
[suporte] DEBUG [http-80-Processor24] BatcherImpl.getPreparedStatement(252) | preparing statement
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeSet(46) | binding '2' to parameter: 1
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeSet(46) | binding '1' to parameter: 2
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeSet(46) | binding '3' to parameter: 3
[suporte] DEBUG [http-80-Processor24] Loader.handleEmptyCollections(402) | result set contains (possibly empty) collection: [br.com.csn.suporte.model.Categoria.categoriasFilhas#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getLoadingCollection(3038) | uninitialized collection: initializing
[suporte] DEBUG [http-80-Processor24] Loader.handleEmptyCollections(402) | result set contains (possibly empty) collection: [br.com.csn.suporte.model.Categoria.categoriasFilhas#1]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getLoadingCollection(3038) | uninitialized collection: initializing
[suporte] DEBUG [http-80-Processor24] Loader.handleEmptyCollections(402) | result set contains (possibly empty) collection: [br.com.csn.suporte.model.Categoria.categoriasFilhas#3]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getLoadingCollection(3038) | uninitialized collection: initializing
[suporte] DEBUG [http-80-Processor24] Loader.doQuery(277) | processing result set
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '2' as column: ID_CATEG1_0_
[suporte] DEBUG [http-80-Processor24] Loader.getRow(480) | result row: 2
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '1' as column: ID_CATEG6___
[suporte] DEBUG [http-80-Processor24] Loader.readCollectionElement(367) | found row of collection: [br.com.csn.suporte.model.Categoria.categoriasFilhas#1]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getLoadingCollection(3061) | reading row
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '2' as column: ID_CATEG1___
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoadByClass(1995) | loading [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2093) | attempting to resolve [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2109) | resolved object in session cache [br.com.csn.suporte.model.Categoria#2]
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '3' as column: ID_CATEG1_0_
[suporte] DEBUG [http-80-Processor24] Loader.getRow(480) | result row: 3
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '1' as column: ID_CATEG6___
[suporte] DEBUG [http-80-Processor24] Loader.readCollectionElement(367) | found row of collection: [br.com.csn.suporte.model.Categoria.categoriasFilhas#1]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getLoadingCollection(3061) | reading row
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '3' as column: ID_CATEG1___
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoadByClass(1995) | loading [br.com.csn.suporte.model.Categoria#3]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2093) | attempting to resolve [br.com.csn.suporte.model.Categoria#3]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2109) | resolved object in session cache [br.com.csn.suporte.model.Categoria#3]
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '4' as column: ID_CATEG1_0_
[suporte] DEBUG [http-80-Processor24] Loader.getRow(480) | result row: 4
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '2' as column: ID_CATEG6___
[suporte] DEBUG [http-80-Processor24] Loader.readCollectionElement(367) | found row of collection: [br.com.csn.suporte.model.Categoria.categoriasFilhas#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getLoadingCollection(3061) | reading row
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '4' as column: ID_CATEG1___
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoadByClass(1995) | loading [br.com.csn.suporte.model.Categoria#4]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2093) | attempting to resolve [br.com.csn.suporte.model.Categoria#4]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2109) | resolved object in session cache [br.com.csn.suporte.model.Categoria#4]
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '5' as column: ID_CATEG1_0_
[suporte] DEBUG [http-80-Processor24] Loader.getRow(480) | result row: 5
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '2' as column: ID_CATEG6___
[suporte] DEBUG [http-80-Processor24] Loader.readCollectionElement(367) | found row of collection: [br.com.csn.suporte.model.Categoria.categoriasFilhas#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getLoadingCollection(3061) | reading row
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '5' as column: ID_CATEG1___
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoadByClass(1995) | loading [br.com.csn.suporte.model.Categoria#5]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2093) | attempting to resolve [br.com.csn.suporte.model.Categoria#5]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2109) | resolved object in session cache [br.com.csn.suporte.model.Categoria#5]
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '6' as column: ID_CATEG1_0_
[suporte] DEBUG [http-80-Processor24] Loader.getRow(480) | result row: 6
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '3' as column: ID_CATEG6___
[suporte] DEBUG [http-80-Processor24] Loader.readCollectionElement(367) | found row of collection: [br.com.csn.suporte.model.Categoria.categoriasFilhas#3]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getLoadingCollection(3061) | reading row
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '6' as column: ID_CATEG1___
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoadByClass(1995) | loading [br.com.csn.suporte.model.Categoria#6]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2093) | attempting to resolve [br.com.csn.suporte.model.Categoria#6]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2109) | resolved object in session cache [br.com.csn.suporte.model.Categoria#6]
[suporte] DEBUG [http-80-Processor24] Loader.doQuery(294) | done processing result set (5 rows)
[suporte] DEBUG [http-80-Processor24] BatcherImpl.logClosePreparedStatement(210) | done closing: 0 open PreparedStatements, 0 open ResultSets
[suporte] DEBUG [http-80-Processor24] BatcherImpl.closePreparedStatement(272) | closing statement
[suporte] DEBUG [http-80-Processor24] Loader.initializeEntitiesAndCollections(314) | total objects hydrated: 0
[suporte] DEBUG [http-80-Processor24] SessionImpl.endLoadingCollections(3097) | 3 collections were found in result set
[suporte] DEBUG [http-80-Processor24] SessionImpl.endLoadingCollections(3128) | collection fully initialized: [br.com.csn.suporte.model.Categoria.categoriasFilhas#2]
[suporte] DEBUG [http-80-Processor24] SessionImpl.endLoadingCollections(3128) | collection fully initialized: [br.com.csn.suporte.model.Categoria.categoriasFilhas#3]
[suporte] DEBUG [http-80-Processor24] SessionImpl.endLoadingCollections(3128) | collection fully initialized: [br.com.csn.suporte.model.Categoria.categoriasFilhas#1]
[suporte] DEBUG [http-80-Processor24] SessionImpl.endLoadingCollections(3131) | 3 collections initialized
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeNonLazyCollections(3149) | initializing non-lazy collections
[suporte] DEBUG [http-80-Processor24] BatchingCollectionInitializer.initialize(52) | done batch load
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeCollection(3304) | collection initialized
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeCollection(3295) | initializing collection [br.com.csn.suporte.model.Categoria.categoriasFilhas#5]
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeCollection(3296) | checking second-level cache
[suporte] DEBUG [http-80-Processor24] SessionImpl.initializeCollection(3302) | collection not cached
[suporte] DEBUG [http-80-Processor24] BatchingCollectionInitializer.initialize(48) | batch loading collection role (small batch): br.com.csn.suporte.model.Categoria.categoriasFilhas
[suporte] DEBUG [http-80-Processor24] BatcherImpl.logOpenPreparedStatement(203) | about to open: 0 open PreparedStatements, 0 open ResultSets
[suporte] DEBUG [http-80-Processor24] BatcherImpl.log(229) | select categorias0_.ID_CATEGORIA_PAI as ID_CATEG6___, categorias0_.ID_CATEGORIA as ID_CATEG1___, categorias0_.ID_CATEGORIA as ID_CATEG1_0_, categorias0_.VERSION as VERSION0_, categorias0_.NOME as NOME0_, categorias0_.DESCRICAO as DESCRICAO0_, categorias0_.DATA_CRIACAO as DATA_CRI5_0_, categorias0_.ID_CATEGORIA_PAI as ID_CATEG6_0_ from CATEGORIA categorias0_ where ((categorias0_.ID_CATEGORIA_PAI=?) or (categorias0_.ID_CATEGORIA_PAI=?) or (categorias0_.ID_CATEGORIA_PAI=?))
[suporte] DEBUG [http-80-Processor24] BatcherImpl.getPreparedStatement(252) | preparing statement
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeSet(46) | binding '5' to parameter: 1
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeSet(46) | binding '4' to parameter: 2
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeSet(46) | binding '6' to parameter: 3
[suporte] DEBUG [http-80-Processor24] Loader.handleEmptyCollections(402) | result set contains (possibly empty) collection: [br.com.csn.suporte.model.Categoria.categoriasFilhas#5]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getLoadingCollection(3038) | uninitialized collection: initializing
[suporte] DEBUG [http-80-Processor24] Loader.handleEmptyCollections(402) | result set contains (possibly empty) collection: [br.com.csn.suporte.model.Categoria.categoriasFilhas#4]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getLoadingCollection(3038) | uninitialized collection: initializing
[suporte] DEBUG [http-80-Processor24] Loader.handleEmptyCollections(402) | result set contains (possibly empty) collection: [br.com.csn.suporte.model.Categoria.categoriasFilhas#6]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getLoadingCollection(3038) | uninitialized collection: initializing
[suporte] DEBUG [http-80-Processor24] Loader.doQuery(277) | processing result set
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '7' as column: ID_CATEG1_0_
[suporte] DEBUG [http-80-Processor24] Loader.getRow(480) | result row: 7
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '5' as column: ID_CATEG6___
[suporte] DEBUG [http-80-Processor24] Loader.readCollectionElement(367) | found row of collection: [br.com.csn.suporte.model.Categoria.categoriasFilhas#5]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getLoadingCollection(3061) | reading row
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '7' as column: ID_CATEG1___
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoadByClass(1995) | loading [br.com.csn.suporte.model.Categoria#7]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2093) | attempting to resolve [br.com.csn.suporte.model.Categoria#7]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2109) | resolved object in session cache [br.com.csn.suporte.model.Categoria#7]
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '8' as column: ID_CATEG1_0_
[suporte] DEBUG [http-80-Processor24] Loader.getRow(480) | result row: 8
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '5' as column: ID_CATEG6___
[suporte] DEBUG [http-80-Processor24] Loader.readCollectionElement(367) | found row of collection: [br.com.csn.suporte.model.Categoria.categoriasFilhas#5]
[suporte] DEBUG [http-80-Processor24] SessionImpl.getLoadingCollection(3061) | reading row
[suporte] DEBUG [http-80-Processor24] NullableType.nullSafeGet(68) | returning '8' as column: ID_CATEG1___
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoadByClass(1995) | loading [br.com.csn.suporte.model.Categoria#8]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2093) | attempting to resolve [br.com.csn.suporte.model.Categoria#8]
[suporte] DEBUG [http-80-Processor24] SessionImpl.doLoad(2109) | resolved object in session cache [br.com.csn.suporte.model.Categoria#8]
[suporte] DEBUG [http-80-Processor24] Loader.doQuery(294) | done processing result set (2 rows)
[suporte] DEBUG [http-80-Processor24] BatcherImpl.logClosePreparedStatement(210) | done clos


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.