so I have a persistent entity that has a @OneToMany list of another entity and I need the list order to be able to be edited by the user, which works wonderfully, I can completely re-order the java List in memory and when I save() the object, the order of links in the linking table DOES change... however, it changes to the reverse order of what the user set. However, if you pull the entity back up before closing the program, it shows up correct, because it's not reloading, and if you reload the program, again, it's backwards.
Is this just not something I'm supposed to do, depend on that order? But making another order column seems redundant since there IS an order anyway, and I can seem to change it... I just need it to save not backwards...
Any ideas? Joshua