Ok, so I have the following (abbreviated) 3 entity and HibernateUtil classes.
public class Tag {
@Id
BigDecimal id;
String tag
@ManyToMany( mappedBy="tags" )
List<Label> labels;
}
public class Label {
@Id
BigDecimal id;
String label;
@ManyToMany( targetEntity=Tag.class )
List<Tag> tags;
}
public class Data {
@Id
BigDecimal id;
BigDecimal data;
@ManyToOne
Label label;
}
public class HibernateUtil {
public static List pagedQuery(DetachedCriteria detachedCriteria, Integer start, Integer size) throws WebApplicationException {
Session session = getSession();
try {
Transaction transaction = session.beginTransaction();
List records = detachedCriteria.getExecutableCriteria(session)
.setResultTransformer(Criteria.DISTINCT_ROOT_ENTITY)
.setFirstResult(start)
.setMaxResults(size)
.list();
transaction.commit();
return records;
} catch (Exception e) {
// Place Logger here...
throw new WebApplicationException(e);
} finally {
session.close();
}
}
}
The issue I have is that when I try to query the Data class with the HibernateUtil.pagedQuery( detatchedCriteria, start, size ), my result list doesn't match the size parameter. I have found that the reason for this is the way hibernate builds the query to include the tags (Data.Label.Tags).
For instance, when a Label has more than one associated Tags the result list for the Data object subquery used in the complete paginated query would look like the following (I found this by parsing the sql Hibernate spits out to the console)
- Data-1;Label:Tag-1
- Data-1;Label;Tag-2
- Data-2;Label;Tag-1
- Data-2;Label;Tag-2
- etc...
If I were to call this with size=3, then the returned result set would be
- Data-1;Label:Tag-1
- Data-1;Label;Tag-2
- Data-2;Label;Tag-1
However, Hibernate would then group the first two rows together (since they're the same Data object), and my returned List object would have a size of 2 (Data-1 & Data-2)
I attempted to replace the setResultTransformer method with a Projection approach that I found through Google, but that then only returned the id's of the Data objects.
Does anyone have any advice for me? I'm not sure where to go from here...