We have the following JPA class:

@Entity
class Supplier {
  // ... id property etc.

  @OneToMany
  @OrderBy("someProperty")
  private List<Region> regions;
}

This works fine in the normal case. However, we have some multi-lingual data where the values are stored in properties like nameEn, nameDe, nameZh. The exact property to use depends on the logged in user. For example, a German speaking user should see the regions as if it had been annotated with @OrderBy("nameDe").

How can I achieve this?

I am aware I could sort the collection in my code after it has been loaded, but this makes pagination of the results quite difficult.

link|improve this question

2  
You can't embed that in the annotation since the annotations are processed once when the EntityManagerFactory is created for your persistence unit. What you're trying to do is similar to building a dynamic query. – Jim Tough Dec 8 '10 at 17:39
feedback

1 Answer

up vote 3 down vote accepted

You could sort them in java. Possibly in a getter:

List<Region> getRegions(){
  sorted = new List<Regions>(regions);
  Collections.sort(sorted, new RegionComparator(getUserLanguage()));
  return sorted;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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