Does hibernate preserve the order of a LinkedHashSet and if so, how? In case this depends on the type of database, I'd like to know this for PostgreSQL.

Background:

I know what a LinkedHashSet is for, and the reason I'm asking this is because I'm logging the names of some functions I execute to a 'logError' table that has a many-to-many relation to some 'functionName' table. I need these functions to remain in the same order as when I executed them, so first I find the corresponding 'functionName' objects, put them in a LinkedHashSet (after each function that failed) and then I persist the 'logError' object.

Now when I get the 'logError' object from the database again, will it still be ordered? And if so, I was curious how this is done by Hibernate.

link|improve this question

1  
Have you tried annotating with @OrderColumn? (maybe that is a JPA annotation) – willcodejavaforfood Nov 22 '10 at 9:36
feedback

2 Answers

up vote 4 down vote accepted

First: I assume you are talking about a releation ship between two entities. Something like

@Entity
public class A {
@ManyToMany
    @JoinTable(name = "A_B", joinColumns = { @JoinColumn(name = "A_fk") }, inverseJoinColumns = { @JoinColumn(name = "B_fk") })
    private Set<B> bs = new LinkedHashSet<Bs>();
}

Hibernate does not preserve the order by itself!

If you have a look at the classes used when entity A is loaded from the data base, then the Set bs is of type: PersistentSet, which is a wrapper, around another Set, and this is (my may case) a normal HashSet. (And HashSets does not preserve the order of its items.)

Even if Hibernate would use a List or LinkedHashSet then it is weak to base the implementation on the natural (not guaranteed) database order. - For MySQL it is some kind of anti pattern.

But you can use the @Sort Annotation (org.hibernate.annotations.Sort) to make your sorting explicit. For example:

@OneToMany(mappedBy = "as")
@Sort(type = SortType.COMPARATOR, comparator = MyBComparator.class);
public SortedSet<C> cs;

@see: Ordering return of Child objects in JPA query

link|improve this answer
feedback

Sets do not have an inherent 'order', nor do database tables - you can apply an order when you query the data, but unless you preserve that order (eg by getting rows one by one and putting them into an ordered container like a linked list) then the returned data will be unordered too.

link|improve this answer
1  
LinkedHashSet has insertion order – willcodejavaforfood Nov 22 '10 at 10:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.