按月分组,在Hibernate中使用标准

时间:2010-01-14 20:34:19

标签: java hibernate hql criteria

我正在尝试使用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();

 }

基本上这种方法会收到一个类别和一个userId来过滤付款记录和一个期间,这个期间会指示从现在到我想要总和多少个月。如何将总和结果按月分组?

任何帮助或提示我都会很感激!

2 个答案:

答案 0 :(得分:39)

我找到了答案,而且非常简单。我更改了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”之后的查询部分,例如:

Select [firstPartOfSqlGroupProjection] * boo;

“{alias}”是休眠在查询中用来引用表的别名。

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

答案 1 :(得分:0)

你可以在hibernate中使用SQLQuery,这是一个例子:

using (var webClient = new WebClientEx())
{
    webClient.DownloadFileCompleted += new AsyncCompletedEventHandler(Completed);
    webClient.DownloadProgressChanged += new DownloadProgressChangedEventHandler(ProgressChanged);
    webClient.DownloadFileAsync(new Uri("http://www.example.com"), "setup.rar");
}