使用Hibernate Criteria获取存储在类A中的列表中的B类对象

时间:2013-08-04 11:51:22

标签: java hibernate criteria

我有两个课程,用户通知以及以下关联:

public class User {
    private Long id;
    private List<Notification> notifications;
}

public class Notification {
    private Long id;
    private Date date;
}

我正在尝试获取在特定时间之前发送并属于特定用户的通知列表。我试图用Hibernate Criteria来实现这个目标:

Criteria criteria = session.createCriteria(User.class).add(Restrictions.eq("id", "123"));
criteria.createAlias("notifications", "notif");
criteria.add(Restrictions.lt("notif.date", calendar.getTime()));
Collection<Notification> result = criteria.list();

问题是我最初定义了“User”类的标准,但最终结果是“Notification”类,所以我得到了一个转换异常。

有可能解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

这是预期的结果。您正在User类上运行查询,因此输出将是User的集合而不是通知

public List<Notification> getNotifications(Long id){

//Start the transaction

//do some error handling and transaction rollback
User user = session.createQuery("from User where id = :id").setParameter("id", id).uniqueParameter();

List<Notification> notifications = new ArrayList<Notification>();
for (Notification notification : user.getNotifications()){
   if (notification.getDate.before(calendar.getTime()){
       notifications.add(notification);
   }
}
//commit the transaction
//close the session
return notifications;

}

或者另一种方法是使用过滤器。您可以找到有关过滤器here

的教程