I am trying to create parent child tables where the order is preserved. The example 7.8 from Hibernate documentation shows how to do this:
@Entity
public cl
Maybe these can help you:
I have the same problem with an old version of hibernate (3.5.6) with tag @IndexColumn
and find one good non-invasive workaround: try to change your List
to Set
Object and use HashSet
instead of ArrayList
.
It's seems that old Hibernate versions work better with Sets.
Good luck!