List<Product> list = new LinkedList<>(); Query query = session.createQuery("from Product"); for(final Object o : query.list()) { list.add((Product)o); }