java.util.ArrayList无法强制转换为java.lang.Long hibernate分离标准

时间:2013-03-08 11:50:15

标签: java spring hibernate struts2 detachedcriteria

我这里有一个Hibernate DetachedCriteria代码。我运行应用程序时收到java.util.ArrayList cannot be cast to java.lang.Long!基本上我在这里做的是有两个列表,每个列表都有酒店和税。这里的逻辑是如果指定酒店和税,加载必要的数据!如果他们没有加载一切!当我保持酒店未被选中并选择税时我收到上述错误。如果我选择酒店并将税收留空,我会得到预期的结果。

//Use if hotel is specified
    if(searchCriteria.getHotel().getId() != null){
        dc.add(Restrictions.eq("h.id", searchCriteria.getHotel().getId()));
    }else if(hotels != null && !hotels.isEmpty()){
        Collection<Long> hotelIds = new ArrayList<Long>();
        for(Hotel h : hotels){
            hotelIds.add(h.getId());
        }
        dc.add(Restrictions.eq("h.id",hotelIds));
    }

    //use if tax is specified
    if(searchCriteria.getTax().getId() != null){
        dc.add(Restrictions.eq("t.id", searchCriteria.getTax().getId()));
    }else if(tax != null && !tax.isEmpty()){
        Collection<Long> taxIds = new ArrayList<Long>();
        for(Tax t : tax){
            taxIds.add(t.getId());
        }
        dc.add(Restrictions.eq("t.id",taxIds));
    }

    //Order Result
    dc.addOrder(Order.asc("h.id"));
    dc.addOrder(Order.asc("t.code"));

请让我知道我在这里做的错误!

1 个答案:

答案 0 :(得分:7)

在匹配集合中的项目时使用 Restrictions.in("t.id",taxIds)

此处为Restrictions.eq("t.id",taxIds),taxIds为ArrayList,t.id为Long,因此 java.util.ArrayList无法强制转换为java.lang.Long 例外