-->
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: How to map an array of objects?
PostPosted: Tue Sep 15, 2009 8:15 am 
Regular
Regular

Joined: Fri May 22, 2009 4:50 am
Posts: 59
Hi,
I am working on my 1st project using hibernate and I am stuck with this problem.
I have to map an array of objects in Class Executor which is as follows:

Class to be mapped is

Code:
Class Policy{
         private Map<String, Executor> executors = new HashMap<String, Executor>
}

Class Executor{
        private String name;
        private Money[] amountList;
}


for which my mapping file is as follows:

Code:
<class name="Policy" table="POLICY">
          <id> ... </id>
         <map name="executors" table="EXECUTORS" cascade="all">
         <key ... />
         <index column="ID" type="string"/>
                   <composite-element class="Executor">
                            <property name="name" column="NAME"/>

                            ...but how to map array amountList of objects type Money now...

                   </composite-element>
         </map>
</class>


All suggestions are welcome.
Thanks.


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.