-->
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.  [ 2 posts ] 
Author Message
 Post subject: load() not retrieving collections for dynamic entity
PostPosted: Fri Mar 07, 2008 3:05 pm 
Newbie

Joined: Mon Mar 19, 2007 7:47 pm
Posts: 6
I'm using dynamic-entity MAP mode. I have an entity with a collection (bag) mapped. When I do a load() (and get() and merge()), the returned map keeps coming back with null in the collection key value.

The entity map does get load ok with the collection if the entity is returned in a query though.

Any thoughts anyone? Thanks much.

Versions:
3.2.2, 3.2.6

Mapping documents:

<class entity-name="UserEntity" table="USERS">
<id name="id" type="java.lang.Long" column="USER_ID">
<generator class="native"/>
</id>

<version name="version" access="field" column="_OBJ__VERSION_"/>

<bag name="itemsForSale" inverse="true" cascade="merge,delete">
<key column="USER_ID"/>
<one-to-many entity-name="ItemEntity"/>
</bag>

...
</class>

Code between sessionFactory.openSession() and session.close():

Long id = ...;

Map persistentMap = (Map) session.load("UserEntity", id);

then, in persistentMap, the value for key "itemsForSale" is null.

and yes, there is data in the database...

thanks in advance.

-r


Top
 Profile  
 
 Post subject:
PostPosted: Fri Mar 07, 2008 5:52 pm 
Newbie

Joined: Tue Apr 25, 2006 1:17 pm
Posts: 19
load doesn't usually return null if an object is not found as it will throw an exception when you try to access properties of the non-existent object. Session.get however will return null if the object you requested isn't found in the database.

Nonetheless, have you tried something like:

UserEntity entity = (UserEntity) session.load(UserEntity.class, id);


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 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.