Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)
From the forum:
When I persist object with embedded collection that is defined like
... private List<TimeInstant> values; @ElementCollection @Column(name = "values") public List<TimeInstant> getValues() { return values; } ....
this collection got persisted in random order.
I mean if my list is
{timeInstant1, timeInstant2, timeInstant3}
in database it may look like
"values" : [ { timeInstant2 }, { timeInstant1 }, { timeInstant3 } ]
List is initiated as an ArrayList.