Saving order of a List in JPA

前端 未结 3 1398
粉色の甜心
粉色の甜心 2021-02-01 03:45

I have the following question about JPA:

Can I save the order of the elements in a java.util.List? In my application the order in which I put elements in the Lists is im

3条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-01 04:14

    JPA has 2 types of Lists. In JPA1 there is an "ordered list" (which is what you see, ordering defined by some SQL clause). In JPA2 you can have "ordered lists" or alternatively "indexed lists" (where the order of creation is preserved) ... the @OrderColumn referred to. Any implementation of JPA2 will have to support this e.g DataNucleus.

    JDO has had indexed lists since day 1

提交回复
热议问题