-->
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.  [ 3 posts ] 
Author Message
 Post subject: session.load() when you don't know the Class of the object
PostPosted: Thu Oct 07, 2004 9:46 am 
Newbie

Joined: Thu Oct 07, 2004 9:20 am
Posts: 11
I need to perform a session.load() on an object that I don't know the class of. I call:
Code:
session.load(theObject.getClass(), theObject.getKey())

and I get the traceback (at the end of message).

The problem seems to be that I have a proxy object. When I call getClass() I get the class of the proxy, and there is no persister for the proxy class (only for the actual class).

I have built a work-around. My persistent objects all have a getRealClass() method that returns the class of the actual object. Is there a better way? (Do proxy objects implement an interface that I could check instanceof for and then get the superclass?)

Possible enhancements to hibernate would be to have a method
Code:
    session.load(Object, Serializeable)

that would reload the object (hibernate would figure out the appropriate class). Or to make session.load be smart enough to handle hibernate proxy objects.

Thanks


Hibernate version: 2.1

Full stack trace of any exception that occurs:
Code:
com.guardent.rbac.RbacException: com.guardent.osl.TargetException: net.sf.hibernate.MappingException: No persister for: com.guardent.persistent.objects.Device$$EnhancerByCGLIB$$c3a8ac4c
   at com.guardent.rbac.GrantChecker.getTuplesWithCapability(GrantChecker.java:181)
   at com.guardent.osl.Tester.doListObjectsForUser(Tester.java:218)
   at com.guardent.osl.Tester.test(Tester.java:162)
   at com.guardent.osl.Tester.main(Tester.java:114)
Caused by: com.guardent.osl.TargetException: net.sf.hibernate.MappingException: No persister for: com.guardent.persistent.objects.Device$$EnhancerByCGLIB$$c3a8ac4c
   at com.guardent.persistent.PersistentSession.load(PersistentSession.java:39)
   at com.guardent.osl.TargetResultCrossProductFinal.getSet(TargetResultCrossProductFinal.java:294)
   at com.guardent.osl.TargetResultCrossProductFinal.addTuples(TargetResultCrossProductFinal.java:339)
   at com.guardent.osl.TargetResultCrossProductFinal.getTuples(TargetResultCrossProductFinal.java:352)
   at com.guardent.rbac.GrantChecker.getTuplesWithCapability(GrantChecker.java:179)
   ... 3 more
Caused by: net.sf.hibernate.MappingException: No persister for: com.guardent.persistent.objects.Device$$EnhancerByCGLIB$$c3a8ac4c
   at net.sf.hibernate.impl.SessionFactoryImpl.getPersister(SessionFactoryImpl.java:347)
   at net.sf.hibernate.impl.SessionImpl.getClassPersister(SessionImpl.java:2690)
   at net.sf.hibernate.impl.SessionImpl.doLoadByClass(SessionImpl.java:1988)
   at net.sf.hibernate.impl.SessionImpl.load(SessionImpl.java:1920)
   at com.guardent.persistent.PersistentSession.load(PersistentSession.java:37)
   ... 7 more

Name and version of the database you are using: Oracle 8


Top
 Profile  
 
 Post subject: A better workaround
PostPosted: Thu Oct 07, 2004 10:38 am 
Newbie

Joined: Thu Oct 07, 2004 9:20 am
Posts: 11
I answered my own question. Proxy classes implement the HibernateProxy interface. So if my object implements HibernateProxy, I use the object's superclass.

It isn't elegant because it couples my application with Hibernate's implementation of Proxy. When/if that changes, I will have to change my application.


Top
 Profile  
 
 Post subject: HibernateProxyHelper.getClass(Object obj) does the trick
PostPosted: Wed Oct 20, 2004 11:17 am 
Newbie

Joined: Thu Oct 07, 2004 9:20 am
Posts: 11
Use
Code:
HibernateProxyHelper.getClass(Object obj)
to get the real class.


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

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.