In Hibernate Entities, in what cases is it the better to use List, as opposed to Set?
Example of Set
public class Department {
private Long departmentId;
private Set<Employee> employees;
// Getter and Setter methods
}
Example of List
public class Department {
private Long departmentId;
private List<Employee> employees;
// Getter and Setter methods
}