java中List分頁的幾種方法介紹
更新時間:2021年12月02日 10:57:15 作者:chatty 陳
大家好,本篇文章主要講的是java中List分頁的幾種方法介紹,感興趣的同學趕快來看一看吧,對你有幫助的話記得收藏一下,方便下次瀏覽
1.根據(jù)入?yún)Х猪搮?shù)進行sql查詢分頁
Criteria criteria = new Criteria();
//將dataAuto轉成 factoryId brandId seriesId 等查詢條件
String dataAuth = "";
TypeCaseHelper.dataAuto(criteria, dataAuth);
// 設置分頁信息
ExtPager pager = new ExtPager();
Integer startTure = start * pageSize;
criteria.setMysqlPageSize(pageSize);
criteria.setMysqlStart(startTure);
// 排序信息
if (StringUtils.isNotBlank(pager.getDir()) && StringUtils.isNotBlank(pager.getSort())) {
criteria.setOrderByClause(pager.getSort() + " " + pager.getDir());
}
List<VhlAlarmStatusMgtEntity> listDistinct = getVhlAlarmStatusMgtEntities(vin, faultStatus, confirmStatus, startDateTime, endDateTime, sdf, sdfm, carTypeList, criteria);
對應的分頁sql
<select id="selectByExample" parameterType="Criteria" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from status_mgt
<where>
<if test="condition.carTypeList != null and condition.carTypeList.size() > 0" >
and car_type in
<foreach collection="condition.carTypeList" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="condition.startDateTime != null and condition.startDateTime!=''">
and alarm_time >= str_to_date(#{condition.startDateTime,jdbcType=VARCHAR},'%Y-%m-%d %H:%i:%S')
</if>
<if test="condition.endDateTime != null and condition.endDateTime!=''">
and str_to_date(#{condition.endDateTime,jdbcType=VARCHAR},'%Y-%m-%d %H:%i:%S') >= alarm_time
</if>
and logic_flag = 1
</where>
order by alarm_time desc
<if test="mysqlStart != null and mysqlPageSize != null">
limit #{mysqlStart}, #{mysqlPageSize}
</if>
</select>
2.對所有l(wèi)ist根據(jù)分頁參數(shù)分頁
Criteria criteria1 = new Criteria();
List<VhlAlarmStatusMgtEntity> listDistinctForCout = getVhlAlarmStatusMgtEntities(vin, faultStatus, confirmStatus, startDateTime, endDateTime, sdf, sdfm, carTypeList, criteria1);
Integer count = listDistinctForCout.size(); // 記錄總數(shù)
Integer pageCount; // 頁數(shù)
if (count % pageSize == 0) {
pageCount = count / pageSize;
} else {
pageCount = count / pageSize + 1;
}
int fromIndex; // 開始索引
int toIndex; // 結束索引
if (!pageCount.equals(start+1)) {
fromIndex = start * pageSize;
toIndex = fromIndex + pageSize;
if(toIndex > count){
fromIndex = (start-1) * pageSize;
toIndex = count;
}
} else {
fromIndex = start * pageSize;
toIndex = count;
}
List<VhlAlarmStatusMgtEntity> pageList = listDistinctForCout.subList(fromIndex, toIndex);
3.PageHelper分頁
//開啟分頁
PageHelper.startPage(Integer.parseInt(pageNum), Integer.parseInt(pageSize));
PageInfo<Map<String, String>> pageInfo = new PageInfo(datalist);
HashMap<String, Object> map= new HashMap<>();
map.put("datalist", datalist);
map.put("total", pageInfo.getTotal());
map.put("size", pageInfo.getPageSize());
map.put("page", pageInfo.getPageNum());
到此這篇關于java中List分頁的幾種方法介紹的文章就介紹到這了,更多相關java List分頁方法內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
Mybatis中SqlSession接口中selectList方法詳解
這篇文章主要給大家介紹了關于Mybatis中SqlSession接口中selectList方法的相關資料,文中通過實例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下2023-03-03
Struts2學習筆記(6)-簡單的數(shù)據(jù)校驗
這篇文章主要介紹Struts2中的數(shù)據(jù)校驗,通過一個簡單的例子來說明,希望能給大家做一個參考。2016-06-06
Java實現(xiàn)求子數(shù)組和的最大值算法示例
這篇文章主要介紹了Java實現(xiàn)求子數(shù)組和的最大值算法,涉及Java數(shù)組遍歷、判斷、運算等相關操作技巧,需要的朋友可以參考下2018-02-02

