What is the “proper” way to cast Hibernate Query.list() to List?

后端 未结 10 1721
梦谈多话
梦谈多话 2020-12-04 11:44

I\'m a newbie with Hibernate, and I\'m writing a simple method to return a list of objects matching a specific filter. List seemed a natural return t

10条回答
  •  被撕碎了的回忆
    2020-12-04 12:27

    List list = new ArrayList();
    Criteria criteria = this.getSessionFactory().getCurrentSession().createCriteria(Person.class);
    for (final Object o : criteria.list()) {
        list.add((Person) o);
    }
    

提交回复
热议问题