Advertisement



< Prev
Next >



Hibernate Mapping Sorted Set - TreeSet



Today we are going to understand how to persist a collection object based on a sorted set(TreeSet) collection within the database using Hibernate. By default, a TreeSet stores the collection of elements in an ascending order but we will implement Comparator interface to sort the collection of elements in a descending order.




Why do we have to add a collection object in an Entity class.


Let's suppose we have a class Companies containing the information such as - id, name and a Set collection of String object(representing names of all the employees of a particular company). That's why we are going to need a collection object in Companies class, representing multiple employee names in a company.

Let's put this example to work and make it easier for you to understand the whole concept.




Note :


Please Subscribe

Please subscribe to our social media channels for daily updates.


Decodejava Facebook Page  DecodeJava Twitter Page Decodejava Google+ Page




Advertisement



Notifications



Please check our latest addition

C#, PYTHON and DJANGO


Advertisement