PageHelper的使用说明

第一步:
导入pom文件


		
			com.github.pagehelper
			pagehelper
			3.4.2-fix
		

第二步:
分析返回给前台的数据,前台只需要page(当前页)和Rows(这页显示多少条数据)
第三步:
API的使用
service层

	public EasyUIDataGridResult articleList(int page, int rows) {
       //这里需要注意的是,下面这句话必须写在sql之前	
		PageHelper.startPage(page, rows);
		// 执行查询
		ArticleExample example = new ArticleExample();
		//这里的List显示10条数据
		List
list = articleMapper.selectByExample(example); PageInfo
pageInfo = new PageInfo<>(list); // 创建返回结果对象 EasyUIDataGridResult result = new EasyUIDataGridResult(); Long i = pageInfo.getTotal(); Integer j = i.intValue(); result.setTotal(j); result.setRows(list); return result; }

你可能感兴趣的:(JAVA)