Sorted collection vs Ordered collection in hibernate -
Sorted Collection -
Order Collection -
Sorted Collection -
- A sorted collection is sorting a collection by utilizing the sorting features provided by the Java collections framework.
- The sorting occurs in the memory of JVM which running Hibernate, after the data being read from database using java comparator.
- If your collection is not large, it will be more efficient way to sort it.
Order Collection -
- Order collection is sorting a collection by specifying the order-by clause for sorting this collection when retrieval.
- If your collection is very large, it will be more efficient way to sort it