Hi,
I am using the classes that Hibernate-tools created for me.(i reverse engineered my database)
It seems like Hibernate stores the entries that are mapped to another one as a foreign key
in a Set(HashSet).And i am guessing that it would be better to have them stored in a List
or ArrayList since i will display those data in a table using
JSF,and with Lists reaching the data
easier(using get(index)).(i dont know if i can send a Set into a datatable or not).
According to the situation,what do you advice me?Should i change Set variables to List's?
Would that make a problem?
Thank you for your answers..