| Author |
Hibernate Collection usage
|
Salil Vverma
Ranch Hand
Joined: Sep 06, 2009
Posts: 219
|
|
Hi,
I know that hibernate provides a range of collection to be used. These are List,Set,Map,Bag,Array and primitive-array.
Can some one please suggest on what situation, which collection should be used ?
If we use map, what would work as key and what would work as value ?
|
Regards
Salil Verma
|
 |
Bill Gorder
Bartender
Joined: Mar 07, 2010
Posts: 1282
|
|
|
Typically a Set is suggested if it will do the trick, when it does not I typically use a List. The important thing is to use the interface. The reason is HIbernate will provide its own implementation. I do not use any of the others.
|
[How To Ask Questions][Read before you PM me]
|
 |
 |
|
|
subject: Hibernate Collection usage
|
|
|