Which of the following collection types do you use in your JPA domain model and why:
java.util.Collectionjava.util.Listjava.util.Set
I was wondering whether there are some ground rules for this.
UPDATE I know the difference between a Set and a List. A List allows duplicates and has an order and a Set cannot contain duplicate elements and does not define order. I'm asking this question in the context of JPA. If you strictly follow the definition, then you should always end up using the Set type, since your collection is stored in relational database, where you can't have duplicates and where you have define an order by yourself, i.e. the order in you Java List is not necessarily preserved in the DB.
For example, most of the time I'm using the List type, not because it has an order or allows duplicates (which I can't have anyway), because some of the components in my component library require a list.
@OrderByannotation, but it has nothing to with the order in yourList. If you retrieve your entity list (which is annotated with@OrderBy), change its order, merge to the DB and retrieve it again, will the order be you changed be preserved? No! You will get the same order you've defined via@OrderBy– Theo Jan 11 '11 at 8:46