public Object doInHibernate(Session session) throws HibernateException { Query q = session.createQuery(dql); q.setFirstResult(size); q.setMaxResults(rInfo.getPageSize()); return q.list(); } We need to make sure the value of parameter of query.setFirstResult is bigger than 0. And it seems that we can also check if hibernate.jdbc.use_scrollable_resultset is set to true. I didn't try this for I resolve this issue by setting the ...
An AMP file (or Alfresco Module Package) is a collection of code, XML, images, CSS, etc. that collectively extend the functionality or data provided by the standard Alfresco repository. An AMP file can contain as little as a set of custom templates or a new category. It ...