I have some Hibernate entities that I want to group by paramType and display the parameter type. Here is the controller.getAnalyticsCount() method:
public List<Analytic> getAnalyticCount() {
Criteria criteria = currentSession().createCriteria(Analytic.class);
return criteria.setProjection( Projections.projectionList()
.add( Projections.rowCount())
.add( Projections.groupProperty("paramType")).list();
}
Now, in displaying in JSF, the following works, but prints each objects:
<ui:repeat var="foo" value="#{controller.getAnalyticsCount()}">
#{foo}
</ui:repeat>
How do I print the actual counts? Isn't the other fields of the grouped by object available to me? I have also tried .add( Projections.rowCount(),'counts') and #{foo.counts}`. The documentation seems to be very light in this respect.
PS: Actually, the return type is possibly the reason, but what exactly is the return type in this case, it is no longer of type List<Analytic> I guess.