criteria = createCriteria("employee");
criteria.add(Restrictions.eq("name", "John"));
criteria.addOrder(Order.asc("city"));
criteria.addOrder(Order.asc("state"));
List result = criteria.list();
This statement returns a list of Employee
objects. How can I make it return a Set
of Employee objects instead, in order to remove duplicate data?
I understand I can achieve this by creating a set out of the returned list like below, but then I would lose the sorting order of the list. And I don't want to have to write code to sort the set.
Set<Employee> empSet = new HashSet<Employee>(result);
Best Solution
I don't think it's possible to return a
Set
usingCriteria
based on the javadoc. However, if you want to remove duplicate data, why don't add aProjections.distinct(...)
to your existingCriteria
to remove the duplicates?http://docs.jboss.org/hibernate/envers/3.6/javadocs/org/hibernate/criterion/Projections.html
UPDATE
For example, if you want to apply a
SELECT DISTINCT
on the employee name (or some identifier(s)) to get a list of unique employees, you can do something like this:-This way, you don't really need to worry about using
Set
at all.