0

我有两个类,用户通知具有以下关联:

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();

问题是,最初我为“用户”类定义了标准,但最终结果是“通知”类,所以我得到了一个强制转换异常。

有可能解决这个问题吗?

4

1 回答 1

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;

}

或者另一种方法是使用过滤器。您可以在此处找到有关过滤器的教程

于 2013-08-04T11:53:16.020 回答