码迷,mamicode.com
首页 > 其他好文 > 详细

分页查询知识点

时间:2017-01-04 07:17:26      阅读:330      评论:0      收藏:0      [点我收藏+]

标签:res   cti   rate   family   for   integer   add   2.3   集合   

1.在mysql里面使用分页查询sql语句:

使用limit关键字

select * from user limit 0,3;

limit关键字后面有两个参数,第一个参数为开始位置,第二个参数为每页显示记录数

2.分页相关属性

2.1当前页

2.2每页显示记录数

2.3总记录数

2.4总页数

  总记录数除以每页显示记录数

  比如10条记录,每页显示5条,有2页

  比如10条记录,每页显示7条,有2

 

  总记录数除以每页显示记录数,如果能够整除,结果是相除结果.如果不能整除,结果是相除的结果+1.

2.5开始位置

  计算公式   (当前页-1*每页显示记录数 

    当前页      开始位置    每页记录数

      1            0             3

      2            3             3

      3            6             3

 

 代码:

domain:

public class PageBean {
    // 每页显示记录数
    private Integer pageSize;
    // 当前页
    private Integer currentPage;
    // 总记录数
    private Long totalCount;
    // 总页数
    private Long totalPage;
    // 开始位置
    private Integer begin;
    // 每页数据的list集合
    private List<Customer> list;
}

service:

    public PageBean listpage(int currentPage, String custName, int pageSize2) {
        // TODO Auto-generated method stub
        PageBean pageBean = new PageBean();
        pageBean.setCurrentPage(currentPage);
        //总数量
        Long totalCount = customerDAO.findCount(custName);
        pageBean.setTotalCount(totalCount);
        //每页预计显示数量
        int pageSize = pageSize2 ; 
        long totalPage = 0;

        if (totalCount%pageSize ==0) {
            //整除
            totalPage =(totalCount/pageSize);

            
        }else {
            //不整除
            totalPage =(totalCount/pageSize)+1;

        }
        pageBean.setTotalPage(totalPage);
        int begin = (int) ((currentPage-1)*pageSize);
        List<Customer> list = customerDAO.findAllPage(begin,pageSize,custName);
        pageBean.setList(list);
        
        return pageBean;
    }

dao:

    public Long findCount(String custName) {
        // TODO Auto-generated method stub
        List<Long> list = (List<Long>) hibernateTemplate.find("SELECT COUNT(*) FROM Customer WHERE custname LIKE ?","%"+custName+"%");
        System.err.println(list);
        if (list != null && list.size() != 0) {
            Long l = list.get(0);
            return l;
        }
        return 0L;
    }

    public List<Customer> findAllPage(int begin, int pageSize,String custName) {
        // TODO Auto-generated method stub
        DetachedCriteria criteria = DetachedCriteria.forClass(Customer.class);
        criteria.add(Restrictions.like("custName", "%"+custName+"%"));

        List<Customer> list = (List<Customer>) hibernateTemplate.findByCriteria(criteria, begin, pageSize);

        return list;
    }

 

分页查询知识点

标签:res   cti   rate   family   for   integer   add   2.3   集合   

原文地址:http://www.cnblogs.com/ityuhao/p/6246964.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!