Browsing the archives for the hibernate tag.

Hibernate Pagination

Examples

The following is an example of Hibernate pagination using the Java persistence libraries:

final Query query  = getEntityManager().createQuery("select n FROM Foo n");
query.setFirstResult(10);
query.setMaxResults(20);
return query.getResultList();
No Comments