-->
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: Unknown entity class: java.util.HashSet
PostPosted: Thu Dec 30, 2004 6:08 pm 
Newbie

Joined: Thu Dec 30, 2004 5:22 pm
Posts: 1
Hi,

When I create a Customer, associate an Order to the customer (both ways), associate a ProductOrderEntry to the order (both ways) I get the exception below.

Everything works fine when I remove the any element that links to ProductOrderEntry/OneOffOrderEntry in Order and replace it with a set element that links to ProductOrderEntry. I'm not sure what's wrong, according to Hibernate in Action the any element is the proper way to link to multiple classes in an hierarchy (ProductOrderEntry and OneOffOrderEntry both extend OrderEntry). The log doesn't say much about what's wrong.


Hibernate version:
2.1.7c

Mapping documents:

Code:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
   "-//Hibernate/Hibernate Mapping DTD//EN"
   "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">

<hibernate-mapping package="be.primary.test.order.domain.impl">
   <class name="Order" table="TORDER">
      <id name="uniqueIdentifier" access="field" column="ORDER_ID" unsaved-value="null">
         <generator class="native"/>
      </id>
      <version name="version" access="field" column="VERSION"/>
      <many-to-one name="customer" column="CUSTOMER_ID" class="Customer" access="field" not-null="true"/>
      <any name="orderEntryByOrder" access="field" meta-type="string" id-type="integer" cascade="all">
         <meta-value value="ONEOFFORDERENTRY" class="OneOffOrderEntry"/>
         <meta-value value="PRODUCTORDERENTRY" class="ProductOrderEntry"/>
         <column name="ORDERENTRY_TYPE"/>
         <column name="ORDERENTRY_ID"/>
      </any>
   </class>
   <class name="ProductOrderEntry" table="TPRODUCTORDERENTRY">
      <id name="uniqueIdentifier" access="field" column="PRODUCTORDERENTRY_ID" unsaved-value="null">
         <generator class="native"/>
      </id>
      <version name="version" access="field" column="VERSION"/>
      <many-to-one name="product" column="PRODUCT_ID" class="Product" access="field" not-null="true"/>
      <many-to-one name="order" column="ORDER_ID" class="Order" access="field" not-null="true"/>
      <property name="quantity" type="double" column="QUANTITY" access="field" not-null="true"/>
      <property name="unitPrice" type="double" column="UNIT_PRICE" access="field" not-null="true"/>
   </class>
   <class name="OneOffOrderEntry" table="TONEOFFORDERENTRY">
      <id name="uniqueIdentifier" access="field" column="ONEOFFORDERENTRY_ID" unsaved-value="null">
         <generator class="native"/>
      </id>
      <version name="version" access="field" column="VERSION"/>
      <property name="description" type="string" column="DESCRIPTION" access="field" not-null="true"/>
      <many-to-one name="order" column="ORDER_ID" class="Order" access="field" not-null="true"/>
      <property name="quantity" type="double" column="QUANTITY" access="field" not-null="true"/>
      <property name="unitPrice" type="double" column="UNIT_PRICE" access="field" not-null="true"/>
   </class>
   <class name="Product" table="TPRODUCT">
      <id name="uniqueIdentifier" access="field" column="PRODUCT_ID" unsaved-value="null">
         <generator class="native"/>
      </id>
      <version name="version" access="field" column="VERSION"/>
      <property name="name" type="string" column="NAME" access="field" not-null="true"/>
      <property name="description" type="string" column="DESCRIPTION" access="field" not-null="true"/>
      <set name="productOrderEntryByProduct" access="field" inverse="true" cascade="save-update">
         <key column="PRODUCT_ID"/>
         <one-to-many class="ProductOrderEntry"/>
      </set>
   </class>
   <class name="Customer" table="TCUSTOMER">
      <id name="uniqueIdentifier" access="field" column="CUSTOMER_ID" unsaved-value="null">
         <generator class="native"/>
      </id>
      <version name="version" access="field" column="VERSION"/>
      <property name="firstName" type="string" column="FIRSTNAME" access="field" not-null="true"/>
      <property name="lastName" type="string" column="LASTNAME" access="field" not-null="true"/>
      <component name="address" access="field" class="Address">
         <property name="street1" type="string" column="STREET1" access="field" not-null="true"/>
         <property name="street2" type="string" column="STREET2" access="field" not-null="false"/>
         <property name="location" type="string" column="LOCATION" access="field" not-null="true"/>
         <property name="state" type="string" column="STATE" access="field" not-null="false"/>
         <many-to-one name="country" column="COUNTRY_ID" class="Country" access="field" not-null="true"/>
      </component>
      <set name="orderByCustomer" access="field" inverse="true" cascade="all">
         <key column="CUSTOMER_ID"/>
         <one-to-many class="Order"/>
      </set>
   </class>
   <class name="Country" table="TCOUNTRY">
      <id name="uniqueIdentifier" access="field" column="COUNTRY_ID" unsaved-value="null">
         <generator class="native"/>
      </id>
      <version name="version" access="field" column="VERSION"/>
      <property name="name" type="string" column="NAME" access="field" not-null="true"/>
   </class>
</hibernate-mapping>


Code between sessionFactory.openSession() and session.close():
I'm using Spring

Full stack trace of any exception that occurs:
Code:
Unknown entity class: java.util.HashSet; nested exception is net.sf.hibernate
.MappingException: Unknown entity class: java.util.HashSet
org.springframework.orm.hibernate.HibernateSystemException: Unknown entity cl
ass: java.util.HashSet; nested exception is net.sf.hibernate.MappingException
: Unknown entity class: java.util.HashSet
net.sf.hibernate.MappingException: Unknown entity class: java.util.HashSet
        at net.sf.hibernate.impl.SessionFactoryImpl.getPersister(SessionFacto
ryImpl.java:347)
        at net.sf.hibernate.impl.SessionImpl.getClassPersister(SessionImpl.ja
va:2710)
        at net.sf.hibernate.impl.SessionImpl.getPersister(SessionImpl.java:27
17)
        at net.sf.hibernate.impl.SessionImpl.saveOrUpdate(SessionImpl.java:13
91)
        at net.sf.hibernate.engine.Cascades$4.cascade(Cascades.java:114)
        at net.sf.hibernate.engine.Cascades.cascade(Cascades.java:436)
        at net.sf.hibernate.engine.Cascades.cascade(Cascades.java:503)
        at net.sf.hibernate.impl.SessionImpl.doSave(SessionImpl.java:899)
        at net.sf.hibernate.impl.SessionImpl.doSave(SessionImpl.java:866)
        at net.sf.hibernate.impl.SessionImpl.saveWithGeneratedIdentifier(Sess
ionImpl.java:784)
        at net.sf.hibernate.impl.SessionImpl.save(SessionImpl.java:747)
        at net.sf.hibernate.impl.SessionImpl.saveOrUpdate(SessionImpl.java:13
97)
        at net.sf.hibernate.engine.Cascades$4.cascade(Cascades.java:114)
        at net.sf.hibernate.engine.Cascades.cascade(Cascades.java:436)
        at net.sf.hibernate.engine.Cascades.cascadeCollection(Cascades.java:5
26)
        at net.sf.hibernate.engine.Cascades.cascade(Cascades.java:452)
        at net.sf.hibernate.engine.Cascades.cascade(Cascades.java:503)
        at net.sf.hibernate.impl.SessionImpl.doSave(SessionImpl.java:961)
        at net.sf.hibernate.impl.SessionImpl.doSave(SessionImpl.java:866)
        at net.sf.hibernate.impl.SessionImpl.saveWithGeneratedIdentifier(Sess
ionImpl.java:784)
        at net.sf.hibernate.impl.SessionImpl.save(SessionImpl.java:747)
        at org.springframework.orm.hibernate.HibernateTemplate$12.doInHiberna
te(HibernateTemplate.java:371)
        at org.springframework.orm.hibernate.HibernateTemplate.execute(Hibern
ateTemplate.java:228)
        at org.springframework.orm.hibernate.HibernateTemplate.save(Hibernate
Template.java:368)
        at be.primary.test.order.dao.HibernateDao.makeCustomerPersistent(Hibe
rnateDao.java)
        at be.primary.test.order.test.TestOrderModelImpl.testAddCustomerAddOr
derAddOrderEntriesRemoveAll(TestOrderModelImpl.java:93)
        at be.primary.test.order.test.TestOrderModelImpl.test(TestOrderModelI
mpl.java:33)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorIm
pl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAc
cessorImpl.java:25)
        at org.springframework.aop.support.AopUtils.invokeJoinpointUsingRefle
ction(AopUtils.java:295)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.invok
eJoinpoint(ReflectiveMethodInvocation.java:154)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.proce
ed(ReflectiveMethodInvocation.java:121)
        at org.springframework.transaction.interceptor.TransactionInterceptor
.invoke(TransactionInterceptor.java:56)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.proce
ed(ReflectiveMethodInvocation.java:143)
        at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDyn
amicAopProxy.java:174)
        at $Proxy0.test(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorIm
pl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAc
cessorImpl.java:25)
        at org.springframework.remoting.support.RemoteInvocation.invoke(Remot
eInvocation.java:179)
        at org.springframework.remoting.support.DefaultRemoteInvocationExecut
or.invoke(DefaultRemoteInvocationExecutor.java:32)
        at org.springframework.remoting.support.RemoteInvocationBasedExporter
.invoke(RemoteInvocationBasedExporter.java:70)
        at org.springframework.remoting.support.RemoteInvocationBasedExporter
.invokeAndCreateResult(RemoteInvocationBasedExporter.java:106)
        at org.springframework.remoting.httpinvoker.HttpInvokerServiceExporte
r.handleRequest(HttpInvokerServiceExporter.java:63)
        at org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter
.handle(SimpleControllerHandlerAdapter.java:44)
        at org.springframework.web.servlet.DispatcherServlet.doService(Dispat
cherServlet.java:532)
        at org.springframework.web.servlet.FrameworkServlet.serviceWrapper(Fr
ameworkServlet.java:366)
        at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkS
ervlet.java:326)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
        at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:
358)
        at org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplic
ationHandler.java:294)
        at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.jav
a:567)
        at org.mortbay.http.HttpContext.handle(HttpContext.java:1807)
        at org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicat
ionContext.java:525)
        at org.mortbay.http.HttpContext.handle(HttpContext.java:1757)
        at org.mortbay.http.HttpServer.service(HttpServer.java:879)
        at org.mortbay.http.HttpConnection.service(HttpConnection.java:790)
        at org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:961
)
        at org.mortbay.http.HttpConnection.handle(HttpConnection.java:807)
        at org.mortbay.http.SocketListener.handleConnection(SocketListener.ja
va:218)
        at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:300)
        at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:511)


Name and version of the database you are using:
HSQLDB 1.7.2

The generated SQL (show_sql=true):
see log excerpt

Debug level Hibernate log excerpt:
Code:
     [java] 22:38:47,436 DEBUG SessionImpl:558 - opened session
     [java] 22:38:47,455 DEBUG JDBCTransaction:37 - begin
     [java] 22:38:47,462 DEBUG JDBCTransaction:41 - current autocommit status:true
     [java] 22:38:47,467 DEBUG JDBCTransaction:43 - disabling autocommit
     [java] 22:38:47,503 DEBUG SessionImpl:1536 - find: from Country c where c.name = ?
     [java] 22:38:47,513 DEBUG QueryParameters:109 - parameters: [Belgium]
     [java] 22:38:47,522 DEBUG QueryParameters:112 - named parameters: {}
     [java] 22:38:47,574 DEBUG QueryTranslator:147 - compiling query
     [java] 22:38:47,611 DEBUG SessionImpl:2266 - flushing session
     [java] 22:38:47,615 DEBUG SessionImpl:2459 - Flushing entities and processing referenced collections
     [java] 22:38:47,619 DEBUG SessionImpl:2800 - Processing unreferenced collections
     [java] 22:38:47,656 DEBUG SessionImpl:2814 - Scheduling collection removes/(re)creates/updates
     [java] 22:38:47,663 DEBUG SessionImpl:2290 - Flushed: 0 insertions, 0 updates, 0 deletions to 0 objects
     [java] 22:38:47,666 DEBUG SessionImpl:2295 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
     [java] 22:38:47,670 DEBUG SessionImpl:1827 - Dont need to execute flush
     [java] 22:38:47,677 DEBUG QueryTranslator:207 - HQL: from be.primary.test.order.domain.impl.Country c where c.name = ?
     [java] 22:38:47,686 DEBUG QueryTranslator:208 - SQL: select country0_.COUNTRY_ID as COUNTRY_ID, country0_.VERSION as VERSION, country0_.NAME as NAME from TCOUNTRY country0_ where (country0_.NAME=? )
     [java] 22:38:47,690 DEBUG BatcherImpl:203 - about to open: 0 open PreparedStatements, 0 open ResultSets
     [java] 22:38:47,694 DEBUG SQL:229 - select country0_.COUNTRY_ID as COUNTRY_ID, country0_.VERSION as VERSION, country0_.NAME as NAME from TCOUNTRY country0_ where (country0_.NAME=? )
     [java] Hibernate: select country0_.COUNTRY_ID as COUNTRY_ID, country0_.VERSION as VERSION, country0_.NAME as NAME from TCOUNTRY country0_ where (country0_.NAME=? )
     [java] 22:38:47,701 DEBUG BatcherImpl:252 - preparing statement
     [java] 22:38:47,775 DEBUG Loader:277 - processing result set
     [java] 22:38:47,779 DEBUG Loader:294 - done processing result set (0 rows)
     [java] 22:38:47,783 DEBUG BatcherImpl:210 - done closing: 0 open PreparedStatements, 0 open ResultSets
     [java] 22:38:47,787 DEBUG BatcherImpl:272 - closing statement
     [java] 22:38:47,792 DEBUG Loader:314 - total objects hydrated: 0
     [java] 22:38:47,795 DEBUG SessionImpl:3149 - initializing non-lazy collections
     [java] 22:38:47,810 DEBUG SessionImpl:834 - saving [be.primary.test.order.domain.impl.Country#<null>]
     [java] 22:38:47,814 DEBUG SessionImpl:2329 - executing insertions
     [java] 22:38:47,821 DEBUG Versioning:35 - Seeding: 0
     [java] 22:38:47,828 DEBUG EntityPersister:486 - Inserting entity: be.primary.test.order.domain.impl.Country (native id)
     [java] 22:38:47,874 DEBUG EntityPersister:487 - Version: 0
     [java] 22:38:47,878 DEBUG BatcherImpl:203 - about to open: 0 open PreparedStatements, 0 open ResultSets
     [java] 22:38:47,881 DEBUG SQL:229 - insert into TCOUNTRY (VERSION, NAME, COUNTRY_ID) values (?, ?, null)
     [java] Hibernate: insert into TCOUNTRY (VERSION, NAME, COUNTRY_ID) values (?, ?, null)
     [java] 22:38:47,889 DEBUG BatcherImpl:252 - preparing statement
     [java] 22:38:47,894 DEBUG EntityPersister:384 - Dehydrating entity: [be.primary.test.order.domain.impl.Country#<null>]
     [java] 22:38:47,899 DEBUG BatcherImpl:210 - done closing: 0 open PreparedStatements, 0 open ResultSets
     [java] 22:38:47,908 DEBUG BatcherImpl:272 - closing statement
     [java] 22:38:47,913 DEBUG BatcherImpl:203 - about to open: 0 open PreparedStatements, 0 open ResultSets
     [java] 22:38:47,917 DEBUG SQL:229 - call identity()
     [java] Hibernate: call identity()
     [java] 22:38:47,922 DEBUG BatcherImpl:252 - preparing statement
     [java] 22:38:47,928 DEBUG AbstractEntityPersister:1235 - Natively generated identity: 3
     [java] 22:38:47,934 DEBUG BatcherImpl:210 - done closing: 0 open PreparedStatements, 0 open ResultSets
     [java] 22:38:47,938 DEBUG BatcherImpl:272 - closing statement
     [java] 22:38:47,945 DEBUG SessionImpl:1536 - find: from Country c where c.name = ?
     [java] 22:38:47,975 DEBUG QueryParameters:109 - parameters: [Belgium]
     [java] 22:38:47,979 DEBUG QueryParameters:112 - named parameters: {}
     [java] 22:38:47,983 DEBUG SessionImpl:2266 - flushing session
     [java] 22:38:47,990 DEBUG SessionImpl:2459 - Flushing entities and processing referenced collections
     [java] 22:38:47,996 DEBUG SessionImpl:2800 - Processing unreferenced collections
     [java] 22:38:48,000 DEBUG SessionImpl:2814 - Scheduling collection removes/(re)creates/updates
     [java] 22:38:48,004 DEBUG SessionImpl:2290 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects
     [java] 22:38:48,010 DEBUG SessionImpl:2295 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
     [java] 22:38:48,016 DEBUG Printer:75 - listing entities:
     [java] 22:38:48,020 DEBUG Printer:82 - be.primary.test.order.domain.impl.Country{uniqueIdentifier=3, name=Belgium, version=0}
     [java] 22:38:48,024 DEBUG SessionImpl:1827 - Dont need to execute flush
     [java] 22:38:48,028 DEBUG QueryTranslator:207 - HQL: from be.primary.test.order.domain.impl.Country c where c.name = ?
     [java] 22:38:48,031 DEBUG QueryTranslator:208 - SQL: select country0_.COUNTRY_ID as COUNTRY_ID, country0_.VERSION as VERSION, country0_.NAME as NAME from TCOUNTRY country0_ where (country0_.NAME=? )
     [java] 22:38:48,037 DEBUG BatcherImpl:203 - about to open: 0 open PreparedStatements, 0 open ResultSets
     [java] 22:38:48,042 DEBUG SQL:229 - select country0_.COUNTRY_ID as COUNTRY_ID, country0_.VERSION as VERSION, country0_.NAME as NAME from TCOUNTRY country0_ where (country0_.NAME=? )
     [java] Hibernate: select country0_.COUNTRY_ID as COUNTRY_ID, country0_.VERSION as VERSION, country0_.NAME as NAME from TCOUNTRY country0_ where (country0_.NAME=? )
     [java] 22:38:48,072 DEBUG BatcherImpl:252 - preparing statement
     [java] 22:38:48,079 DEBUG Loader:277 - processing result set
     [java] 22:38:48,084 DEBUG Loader:480 - result row: 3
     [java] 22:38:48,088 DEBUG Loader:294 - done processing result set (1 rows)
     [java] 22:38:48,094 DEBUG BatcherImpl:210 - done closing: 0 open PreparedStatements, 0 open ResultSets
     [java] 22:38:48,097 DEBUG BatcherImpl:272 - closing statement
     [java] 22:38:48,102 DEBUG Loader:314 - total objects hydrated: 0
     [java] 22:38:48,108 DEBUG SessionImpl:3149 - initializing non-lazy collections
     [java] 22:38:48,112 DEBUG SessionImpl:834 - saving [be.primary.test.order.domain.impl.Customer#<null>]
     [java] 22:38:48,118 DEBUG SessionImpl:2329 - executing insertions
     [java] 22:38:48,122 DEBUG Cascades:497 - processing cascades for: be.primary.test.order.domain.impl.Customer
     [java] 22:38:48,128 DEBUG Cascades:506 - done processing cascades for: be.primary.test.order.domain.impl.Customer
     [java] 22:38:48,137 DEBUG Versioning:35 - Seeding: 0
     [java] 22:38:48,179 DEBUG WrapVisitor:81 - Wrapped collection in role: be.primary.test.order.domain.impl.Customer.orderByCustomer
     [java] 22:38:48,183 DEBUG EntityPersister:486 - Inserting entity: be.primary.test.order.domain.impl.Customer (native id)
     [java] 22:38:48,187 DEBUG EntityPersister:487 - Version: 0
     [java] 22:38:48,190 DEBUG BatcherImpl:203 - about to open: 0 open PreparedStatements, 0 open ResultSets
     [java] 22:38:48,194 DEBUG SQL:229 - insert into TCUSTOMER (VERSION, FIRSTNAME, LASTNAME, STREET1, STREET2, LOCATION, STATE, COUNTRY_ID, CUSTOMER_ID) values (?, ?, ?, ?, ?, ?, ?, ?, null)
     [java] Hibernate: insert into TCUSTOMER (VERSION, FIRSTNAME, LASTNAME, STREET1, STREET2, LOCATION, STATE, COUNTRY_ID, CUSTOMER_ID) values (?, ?, ?, ?, ?, ?, ?, ?, null)
     [java] 22:38:48,199 DEBUG BatcherImpl:252 - preparing statement
     [java] 22:38:48,210 DEBUG EntityPersister:384 - Dehydrating entity: [be.primary.test.order.domain.impl.Customer#<null>]
     [java] 22:38:48,217 DEBUG BatcherImpl:210 - done closing: 0 open PreparedStatements, 0 open ResultSets
     [java] 22:38:48,221 DEBUG BatcherImpl:272 - closing statement
     [java] 22:38:48,225 DEBUG BatcherImpl:203 - about to open: 0 open PreparedStatements, 0 open ResultSets
     [java] 22:38:48,228 DEBUG SQL:229 - call identity()
     [java] Hibernate: call identity()
     [java] 22:38:48,236 DEBUG BatcherImpl:252 - preparing statement
     [java] 22:38:48,246 DEBUG AbstractEntityPersister:1235 - Natively generated identity: 5
     [java] 22:38:48,251 DEBUG BatcherImpl:210 - done closing: 0 open PreparedStatements, 0 open ResultSets
     [java] 22:38:48,281 DEBUG BatcherImpl:272 - closing statement
     [java] 22:38:48,287 DEBUG Cascades:497 - processing cascades for: be.primary.test.order.domain.impl.Customer
     [java] 22:38:48,294 DEBUG Cascades:524 - cascading to collection: be.primary.test.order.domain.impl.Customer.orderByCustomer
     [java] 22:38:48,299 DEBUG Cascades:113 - cascading to saveOrUpdate()
     [java] 22:38:48,304 DEBUG SessionImpl:1396 - saveOrUpdate() unsaved instance
     [java] 22:38:48,311 DEBUG SessionImpl:834 - saving [be.primary.test.order.domain.impl.Order#<null>]
     [java] 22:38:48,314 DEBUG SessionImpl:2329 - executing insertions
     [java] 22:38:48,320 DEBUG Cascades:497 - processing cascades for: be.primary.test.order.domain.impl.Order
     [java] 22:38:48,327 DEBUG Cascades:113 - cascading to saveOrUpdate()
     [java] 22:38:48,335 DEBUG JDBCTransaction:82 - rollback
     [java] 22:38:48,339 DEBUG SessionImpl:594 - transaction completion
     [java] 22:38:48,342 DEBUG JDBCTransaction:103 - re-enabling autocommit
     [java] 22:38:48,352 DEBUG SessionImpl:576 - closing session
     [java] 22:38:48,383 DEBUG SessionImpl:3371 - disconnecting session
     [java] 22:38:48,390 DEBUG SessionImpl:594 - transaction completion


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.