关于ssh分类的的pageBean的分页配置

  
PageBean<Product> pageBean = new PageBean<>();
		//设置当前页数
		pageBean.setPage(page);
		//设置每页显示的记录数
		int limit = 8;
		pageBean.setLimit(limit);
		//设置总记录数
		int totalCount = 0;
		totalCount = productDao.findCountCid(cid);
		pageBean.setTotalCount(totalCount);
		//设置总页数
		int totalPage = 0;
		//Math.ceil(totalCount / limit);
		if(totalCount % limit == 0){
			totalPage =  totalCount / limit;	//totalCount = totalPage / limit;
		}else {
			totalPage =  totalCount / limit + 1;//totalCount = totalPage / limit + 1;
		}
		pageBean.setTotalPage(totalPage);
		//每页显示的数据集合:
		//	从哪开始
		int begin = (page - 1) * limit;
		List<Product> list = productDao.findByPageCid(cid,begin,limit);
		pageBean.setList(list);
		return pageBean;
	}
	


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值