- 问题发现
PageHelper有时候有效果,有时候没有效果
我在项目中查了好久,后来在网上也进行了搜索,并发现了其中的原因,故记录。 - 解决的办法
1. PageHelper.startPage(1,10);只对该语句以后的第一个查询语句得到的数据进行分页
2. 就算你在PageInfo pa = new PageInfo("",对象);语句里面的对象是写的最终得到的数据,该插件还是只会对第一个查询所查询出来的数据进行分页
第一个查询语句是指什么呢?举个例子吧,比如你有一个查询数据的方法,写在了PageHelper.startPage(1, 10);下面.但是这个查询方法里面包含两个查询语句的话,该插件就只会对第一查询语句查询的数据进行分页,而不是对返回最终数据的查询与基础查询出来的数据进行分页。
改变一下自己的代码结构,让最终需要的数据所需要的查询语句放在PageHelper.startPage(1, 10)下面就行
但是
问题来了,有些数据不仅仅是一条查询语句就能得到的,而是需要进行数据组装来获得最终你想要的样子,比如说,我自己代码里遇到的问题
JSONArray shifts = tZyMiddleControlTruckMapper.queryShiftsByWharfAndTime(tmpMap);
for (int i = 0;i<shifts.size();i++) {
Map tmpMap2 = new HashMap();
JSONObject item = shifts.getJSONObject(i);
String shiftsGuid = item.getString("guid");
String shiftsName = item.getString("shiftsName");
String timeBegin = item.getString("timeBegin");
String timeEnd = item.getString("timeEnd");
tmpMap2.put("timeBegin",timeBegin);
tmpMap2.put("timeEnd",timeEnd);
JSONArray queryTruckSummaryNewOne = tZyMiddleControlTruckMapper.queryTruckSummaryNewOne(tmpMap2);
for (int j=0;j<queryTruckSummaryNewOne.size();j++) {
Map tmpMap3 = new HashMap();
JSONObject item1 = queryTruckSummaryNewOne.getJSONObject(j);
String washAmount = item1.getString("washAmount");
String loadingAndUnloadingAmount = item1.getString("loadingAndUnloadingAmount");
String truckGuid = item1.getString("truckGuid");
String licensePlateNo = item1.getString("licensePlateNo");
tmpMap3.put("washAmount",washAmount);
tmpMap3.put("loadingAndUnloadingAmount",loadingAndUnloadingAmount);
tmpMap3.put("truckGuid",truckGuid);
tmpMap2.put("truckGuid",truckGuid);
Map queryTruckSummaryNewTwo = tZyMiddleControlTruckMapper.queryTruckSummaryNewTwo(tmpMap2);
String facilStatus = (queryTruckSummaryNewTwo == null)?" ":String.valueOf(queryTruckSummaryNewTwo.get("facilStatus"));
String exitModel = (queryTruckSummaryNewTwo == null)?" ":String.valueOf(queryTruckSummaryNewTwo.get("exitModel"));
tmpMap3.put("licensePlateNo",licensePlateNo);
tmpMap3.put("facilStatus",facilStatus);
tmpMap3.put("exitModel",exitModel);
tmpMap3.put("shiftsGuid",shiftsGuid);
tmpMap3.put("shiftsName",shiftsName);
tmpList.add(tmpMap3);
}
}
PageInfo tmpListPageInfo = new PageInfo<>(tmpList);
List pageList = tmpListPageInfo.getList();
Long total = tmpListPageInfo.getTotal();
这里,tmpList是最终我的数据,它是由三条查询语句经过for循环组装而成的,这个地方我试了PageHelper,结果就是分页不准确
所以我用了别的办法进行分页
int currentPage; //当前第几页数据
int totalRecord = tmpList.size(); //一共多少条记录
int totalPage = totalRecord % pageSize; //一共多少页
if (totalPage > 0) {
totalPage = totalRecord / pageSize + 1;
} else {
totalPage = totalRecord / pageSize;
}
// 当前第几页数据
currentPage = totalPage < pageNum ? totalPage : pageNum;
//起始索引
int fromIndex = pageSize * (currentPage - 1);
//结束索引
int toIndex = pageSize * currentPage > totalRecord ? totalRecord : pageSize * currentPage;
list = tmpList.subList(fromIndex,toIndex);
list就是最终你返回给前台的数据
经过测试,在几万条数据的情况下,这种分页效果还是不错的。