Package com.mamaeye.dao.support

Examples of com.mamaeye.dao.support.Page


  public <T> Page<T> pagedQueryByStartNo(String countHql, String hql,
      int startNo, int pageSize, Object... values) {
    List<T> countlist = getHibernateTemplate().find(countHql, values);
    long totalCount = (Long) countlist.get(0);
    if (totalCount < 1)
      return new Page();

    int startIndex = startNo;
    Query query = createQuery(hql, values);
    List<T> list = query.setFirstResult(startIndex).setMaxResults(pageSize)
        .list();
View Full Code Here

TOP

Related Classes of com.mamaeye.dao.support.Page

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.