使用Hibernate中的条件按月分组

我正在尝试使用Criteria和ProjectionList来获取报告,并且通过hibernate使用它还很新。所以我有这个模型:

private Long _userId;

private Category _category;

private Long _companyId;

private Double _amount;

private Date _date;

我使用以下命令构建查询:

  public List sumPaymentsByUserCategoryPeriod(Category category, Long userId,Integer period){

GregorianCalendar from = new GregorianCalendar();

from.add(Calendar.MONTH, -period);

List<CategoryAmount> resultDTO= new ArrayList<CategoryAmount>();

Criteria criteria = getSession().createCriteria(Payment.class);

criteria.add(Restrictions.eq("_category", category));

criteria.add(Restrictions.eq("_userId",userId));

criteria.add(Restrictions.between("_date", from.getTime(), new Date()));

ProjectionList projectionList = Projections.projectionList();

projectionList.add(Projections.sum("_amount"));

projectionList.add(Projections.groupProperty("_date"));

criteria.setProjection(projectionList);

return criteria.list();

}

基本上,此方法会收到一个Category和一个userId来过滤付款记录和一个期间,这些人将指示从现在到现在我要累加多少个月。如何获得按月分组的总和结果?

任何帮助或提示,我将不胜感激!

回答:

我找到了答案,而且非常简单。我为此更改了ProjectionList标准中的“ groupProperty”:

projectionList.add(Projections.sqlGroupProjection(

"month({alias}.DATE) as month, year({alias}.DATE) as year",

"month({alias}.DATE), year({alias}.DATE)",

new String[]{"month","year"},

new Type[] {Hibernate.DOUBLE}));

好的。我将解释sqlGroupProjection。第一个参数是“选择”之后查询的一部分,例如:

Select [firstPartOfSqlGroupProjection] * boo;

“ {alias}”是hibernate状态在查询中用于引用表的别名。

sqlGroupProjection函数的第二个参数是按条件分组,第三个参数是从分组依据中获取的列名,最后是要使用的数据类型。

以上是 使用Hibernate中的条件按月分组 的全部内容, 来源链接: utcz.com/qa/404005.html

回到顶部