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

Leave a Reply

Allowed tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>