Hibernate中分页

query.setFirstResult(4);
query.setMaxResults(5);
       这两个方法就是hibernate的分页 

原文地址:https://www.cnblogs.com/liuwt365/p/4223583.html