-->
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: Hibernate set and serializable
PostPosted: Thu Apr 02, 2009 2:22 am 
Newbie

Joined: Thu Apr 02, 2009 2:05 am
Posts: 1
Hi,
I have a question about one-to-many association and serializable. In my project there is an Invoice and Item mapping. One invoice contain many items. In Invoice pojo I have getItems and setItems methods. In Invoice.hbm.xml I have

Code:
<set name="items">
    <key>
       <column name="InvoiceID" />
    </key>
    <one-to-many class="Item"/>
</set>


The problem is that I use applets on client side and when I try to send Invoice object which contain HashSet of Items (all loaded by hibernate from database) I get serializable exception. I found out that the problem was that hibernate doesen't create pure HashSet of Items. Instead it creates org.hibernate.collection.PersistentSet which couldn't be serialized because my applet doesen't contain this class. Is there a way to create items as HashSet and not as PersistentSet. I know that i can add hibernate.jar to my applet and that will work but this file is so huge that loading time will be much longer. If any of you know the answer please help.


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.