This article shares with you how to use bootstrap Table for your reference. The specific content is as follows Official website information Effect picture:Examples:html <!-- Table --> <table id="ffServerSystemCheckListTable" data-toolbar="#toolbar" data-show-columns="true" data-show-columns-toggle-all="true"> <%-- <thead>--%> <%-- <tr>--%> <%-- <th data-field="cityName">ID</th>--%> <%-- <th data-field="cityName">Item Name</th>--%> <%-- <th data-field="cityName">Item Price</th>--%> <%-- </tr>--%> <%-- </thead>--%> </table> javascript $(document).ready(function () { //Table plugin mytable=$('#ffServerSystemCheckListTable').bootstrapTable({ //Request method method: 'post', //Type json dataType: "json", contentType: "application/x-www-form-urlencoded", //Show the search button //showSearch: false, //Show refresh button showRefresh: false, //Show the switch phone view button showToggle: false, //Show the content column drop-down box showColumns: false, //Show the button everywhere showExport: false, //Show the paging switch button showPaginationSwitch: false, // Display at least 2 rows minimumCountColumns: 2, //Whether to display the line spacing color//striped: true, //Whether to use cache, the default is true, so generally you need to set this property (*) cache: false, //Whether to display paging (*) pagination: true, //Sorting method sortOrder: "asc", //Initialize loading the first page, default first page pageNumber: 1, //Number of rows per page (*) pageSize: 10, //Number of rows per page available for selection (*) pageList: [10, 25, 50, 100], //This interface needs to process the fixed parameters passed by the bootstrap table and return the json data in a specific format url: "${ctx}/ff/server/ffServerSystemCheck/data", //The default value is 'limit', the parameters passed to the server are: limit, offset, search, sort, order Else //queryParamsType:'', Query parameters, each call will carry this parameter, you can customize queryParams: function (params) { var searchParam = $("#searchForm").serializeJSON(); searchParam.pageNo = params.limit === undefined ? "1" : params.offset / params.limit + 1; searchParam.pageSize = params.limit === undefined ? -1 : params.limit; searchParam.orderBy = params.sort === undefined ? "" : params.sort + " " + params.order; return searchParam; }, //Paging mode: client paging, server paging (*) sidePagination: "server", // contextMenuTrigger:"right", //Press the right button on the PC to pop up the menu // contextMenuTriggerMobile: "press", //Pop up the menu on the mobile phone, click: single click, press: long press. // contextMenu: '#context-menu', onClickRow: function (row, $el) { rowId = row.id; }, onShowSearch: function () { $("#search-collapse").slideToggle(); }, responseHandler: function (res) {//Used to receive other parameters return res; }, onPreBody: function (res) {}, onLoadSuccess: function() {}, onPostHeader: function () {}, onAll: function () {}, columns: [ [ { field: 'cityName', title: 'City Company', rowspan: 2, formatter: function (value, row, index) { return value; } } , { field: 'projectName', title: 'Project name', rowspan: 2 }, { title: 'Homepage Carousel', colspan: 2, align: 'center' }, { title: 'Message', colspan: 2, align: 'center' }, { title: 'Poster Template', colspan: 2, align: 'center' }, { title: 'Real estate dynamics', colspan: 2, align: 'center' }, { title: 'Project selling point', colspan: 2, align: 'center' }, { title: 'Project poster', colspan: 2, align: 'center' }, { title: 'Project Video', colspan: 2, align: 'center' }], [{ field: 'newsCount', title: 'Update times', } , { field: 'newsState', title:"-", class:'newsTitle', formatter: function (value, row, index) { if (value=='unqualified') { return "<span style=\"color: red;\">Unqualified<span>"; } return value; // return jp.getDictLabel(${fns:toJson(fns:getDictList('cooperation_flag'))}, value, "-"); } } , { field: 'msgCount', title: 'Update times' } , { field: 'msgState', title: '-', class:'msgTitle', formatter: function (value, row, index) { if (value=='unqualified') { return "<span style=\"color: red;\">Unqualified<span>"; } return value; } } , { field: 'tempCount', title: 'Update times' }, { field: 'tempState', title: '-', class:'tempTitle', formatter: function (value, row, index) { if (value=='unqualified') { return "<span style=\"color: red;\">Unqualified<span>"; } return value; } }, { field: 'houseCount', title: 'Update times' }, { field: 'houseState', title: '-', class:'houseTitle', formatter: function (value, row, index) { if (value=='unqualified') { return "<span style=\"color: red;\">Unqualified<span>"; } return value; } }, { field: 'sellCount', title: 'Update times' }, { field: 'sellState', title: '-', class:'sellTitle', formatter: function (value, row, index) { if (value=='unqualified') { return "<span style=\"color: red;\">Unqualified<span>"; } return value; } }, { field: 'postCount', title: 'Update times' }, { field: 'postState', title: '-', class:'postTitle', formatter: function (value, row, index) { if (value=='unqualified') { return "<span style=\"color: red;\">Unqualified<span>"; } return value; } }, { field: 'videoCount', title: 'Update times' } , { field: 'videoState', title: '-', class:'videoTitle', formatter: function (value, row, index) { if (value=='unqualified') { return "<span style=\"color: red;\">Unqualified<span>"; } return value; } } ] ] }); if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {//If it is a mobile terminal$('#ffServerSystemCheckListTable').bootstrapTable("toggleView"); } $('#ffServerSystemCheckListTable').on('check.bs.table uncheck.bs.table load-success.bs.table ' + 'check-all.bs.table uncheck-all.bs.table', function () { $('#remove').prop('disabled', !$('#ffServerSystemCheckListTable').bootstrapTable('getSelections').length); $('#batchSet').prop('disabled', !$('#ffServerSystemCheckListTable').bootstrapTable('getSelections').length); $('#view,#edit').prop('disabled', $('#ffServerSystemCheckListTable').bootstrapTable('getSelections').length != 1); }); // Bind query button $("#search").click("click", function () { //Reload table parameters// $('#ffServerSystemCheckListTable').bootstrapTable("refreshOptions", { // //url : path + "/api/peopledataInfo/getPeopleInfoList", // Address to get data// columns : [], // // }); //Dynamic header settings $.ajax({ url: "${ctx}/ff/server/ffServerSystemCheck/checkInfo", // type : "POST", data: $("#searchForm").serialize(), success: function (data) { $(".newsTitle .th-inner").html(data.newsTitle); $(".msgTitle .th-inner").html(data.msgTitle); $(".tempTitle .th-inner").html(data.tempTitle); $(".houseTitle .th-inner").html(data.houseTitle); $(".sellTitle .th-inner").html(data.sellTitle); $(".postTitle .th-inner").html(data.postTitle); $(".videoTitle .th-inner").html(data.videoTitle); $('#ffServerSystemCheckListTable').bootstrapTable('refresh'); } }); }); }); Java controller: @ResponseBody @RequestMapping(value = "data") public Map<String, Object> data(HttpServletRequest request, HttpServletResponse response) { Page<FfServerSystemCheck> page = server.findWebPage(new Page<FfServerSystemCheck>(request, response)); Map<String, Object> map = new HashMap<String, Object>(); map.put("rows", page.getList()); map.put("total", page.getCount()); return data; } xml: <select id="findWebList" resultType="com.jeeplus.modules.ff.server.entity.FfServerSystemCheck"> <if test="dateTypeAll == '0'.toString() or dateTypeAll == '1'.toString() or dateTypeAll=='yesterday' or dateTypeAll=='today'"> select cityName, projectName, newsCount, '-' newsState, msgCount, '-' msgState, tempCount, '-' tempState, houseCount, '-' houseState, sellCount, '-' sellState, postCount, '-' postState, videoCount, '-' videoState </if> <if test="dateTypeAll == 'weeks' or dateTypeAll == 'month' or dateTypeAll=='halfYear' or dateTypeAll=='years'"> select cityName, projectName, newsCount, CASE WHEN newsCount > #{newsNum} THEN 'Qualified' ELSE 'Unqualified' END newsState, msgCount, CASE WHEN msgCount > #{msgNum} THEN 'Pass' ELSE 'Fail' END msgState, tempCount, CASE WHEN tempCount > #{tempNum} THEN 'Qualified' ELSE 'Unqualified' END tempState, houseCount, CASE WHEN houseCount > #{houseNum} THEN 'Qualified' ELSE 'Unqualified' END houseState, sellCount, CASE WHEN sellCount > #{sellNum} THEN 'Qualified' ELSE 'Unqualified' END sellState, postCount, CASE WHEN postCount > #{postNum} THEN 'Qualified' ELSE 'Unqualified' END postState, videoCount, CASE WHEN videoCount > #{videoNum} THEN 'Qualified' ELSE 'Unqualified' END videoState </if> from ( SELECT so.NAME cityName, pm.project_name projectName, ( SELECT count(*) FROM ff_server_news_manage WHERE project_id = pm.id <if test="startDate != null and startDate != ''"> AND DATE_FORMAT(pm.create_date,'%Y-%m-%d') <![CDATA[>=]]> #{startDate} </if> <if test="endDate != null and endDate != ''"> AND DATE_FORMAT(pm.create_date,'%Y-%m-%d') <![CDATA[<=]]> #{endDate} </if> ) newsCount, ( SELECT count(*) FROM ff_server_message_manage WHERE project_id = pm.id <if test="startDate != null and startDate != ''"> AND DATE_FORMAT(pm.create_date,'%Y-%m-%d') <![CDATA[>=]]> #{startDate} </if> <if test="endDate != null and endDate != ''"> AND DATE_FORMAT(pm.create_date,'%Y-%m-%d') <![CDATA[<=]]> #{endDate} </if> ) msgCount, ( SELECT count(*) FROM ff_tuoke_poster_template WHERE project_id = pm.id <if test="startDate != null and startDate != ''"> AND DATE_FORMAT(pm.create_date,'%Y-%m-%d') <![CDATA[>=]]> #{startDate} </if> <if test="endDate != null and endDate != ''"> AND DATE_FORMAT(pm.create_date,'%Y-%m-%d') <![CDATA[<=]]> #{endDate} </if> ) tempCount, ( SELECT count(*) FROM ff_server_houses_dynamic WHERE project_id = pm.id <if test="startDate != null and startDate != ''"> AND DATE_FORMAT(pm.create_date,'%Y-%m-%d') <![CDATA[>=]]> #{startDate} </if> <if test="endDate != null and endDate != ''"> AND DATE_FORMAT(pm.create_date,'%Y-%m-%d') <![CDATA[<=]]> #{endDate} </if> ) houseCount, ( SELECT count( CASE WHEN type = 0 THEN 1 END ) FROM ff_server_talk_tool WHERE project_id = pm.id <if test="startDate != null and startDate != ''"> AND DATE_FORMAT(pm.create_date,'%Y-%m-%d') <![CDATA[>=]]> #{startDate} </if> <if test="endDate != null and endDate != ''"> AND DATE_FORMAT(pm.create_date,'%Y-%m-%d') <![CDATA[<=]]> #{endDate} </if> ) sellCount, ( SELECT count( CASE WHEN type = 1 THEN 1 END ) FROM ff_server_talk_tool WHERE project_id = pm.id <if test="startDate != null and startDate != ''"> AND DATE_FORMAT(pm.create_date,'%Y-%m-%d') <![CDATA[>=]]> #{startDate} </if> <if test="endDate != null and endDate != ''"> AND DATE_FORMAT(pm.create_date,'%Y-%m-%d') <![CDATA[<=]]> #{endDate} </if> ) postCount, ( SELECT count( CASE WHEN type = 2 THEN 1 END ) FROM ff_server_talk_tool WHERE project_id = pm.id <if test="startDate != null and startDate != ''"> AND DATE_FORMAT(pm.create_date,'%Y-%m-%d') <![CDATA[>=]]> #{startDate} </if> <if test="endDate != null and endDate != ''"> AND DATE_FORMAT(pm.create_date,'%Y-%m-%d') <![CDATA[<=]]> #{endDate} </if> ) videoCount FROM sys_office so INNER JOIN ff_server_project_manage pm ON pm.city_company = so.id <where> ${dataScope} <if test="cityCompanyId != null and cityCompanyId != ''"> AND so.id = #{cityCompanyId} </if> </where> GROUP BY pm.project_name ORDER BY pm.create_date DESC ) as a </select> Page Object /** * Copyright © 2015-2020 <a href="http://www.jeeplus.org/" rel="external nofollow" >JeePlus</a> All rights reserved. */ package com.jeeplus.core.persistence; import java.util.ArrayList; import java.util.List; import java.util.regex.Pattern; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.lang3.StringUtils; import com.fasterxml.jackson.annotation.JsonIgnore; import com.jeeplus.common.config.Global; import com.jeeplus.common.utils.CookieUtils; /** * Pagination Class * @author jeeplus * @version 2016-7-2 * @param <T> */ public class Page<T> { protected int pageNo = 1; // Current page number protected int pageSize = Integer.valueOf(Global.getConfig("page.pageSize")); // Page size, set to "-1" to indicate no paging (paging is invalid) protected long count;//Total number of records, set to "-1" to indicate that the total number will not be queried protected int first;//Home page index protected int last;//End page index protected int prev;//Previous page index protected int next;//Next page index private boolean firstPage;//Is it the first page private boolean lastPage;//Is it the last page protected int length = 8;//Display page length protected int slider = 1;//Previous and next display page length private List<T> list = new ArrayList<T>(); private String orderBy = ""; // Standard query is valid, example: updatedate desc, name asc protected String funcName = "page"; // Set the name of the js function called when clicking the page number. The default is page, which is used when there are multiple paging objects on a page. protected String funcParam = ""; // Additional function parameters, the third parameter value. private String message = ""; // Set the prompt message to be displayed after "Total n items" public Page() { this.pageSize = -1; } /** * Construction method* @param request passes the repage parameter to remember the page number* @param response is used to set Cookie and remember the page number*/ public Page(HttpServletRequest request, HttpServletResponse response){ this(request, response, -2); } /** * Construction method* @param request passes the repage parameter to remember the page number* @param response is used to set Cookie to remember the page number* @param defaultPageSize default paging size, if -1 is passed, no paging is performed and all data is returned*/ public Page(HttpServletRequest request, HttpServletResponse response, int defaultPageSize){ // Set the page number parameters (pass the repage parameter to remember the page number) String no = request.getParameter("pageNo"); if (StringUtils.isNumeric(no)){ CookieUtils.setCookie(response, "pageNo", no); this.setPageNo(Integer.parseInt(no)); }else if (request.getParameter("repage")!=null){ no = CookieUtils.getCookie(request, "pageNo"); if (StringUtils.isNumeric(no)){ this.setPageNo(Integer.parseInt(no)); } } // Set the page size parameters (pass the repage parameter to remember the page size) String size = request.getParameter("pageSize"); if (StringUtils.isNumeric(size)){ CookieUtils.setCookie(response, "pageSize", size); this.setPageSize(Integer.parseInt(size)); }else if (request.getParameter("repage")!=null){ no = CookieUtils.getCookie(request, "pageSize"); if (StringUtils.isNumeric(size)){ this.setPageSize(Integer.parseInt(size)); } }else if (defaultPageSize != -2){ this.pageSize = defaultPageSize; }else if ("-1".equals(size)){ this.pageSize = -1; } // Set the sorting parameters String orderBy = request.getParameter("orderBy"); if (StringUtils.isNotBlank(orderBy)){ this.setOrderBy(orderBy); } } /** * Constructor* @param pageNo current page number* @param pageSize paging size*/ public Page(int pageNo, int pageSize) { this(pageNo, pageSize, 0); } /** * Construction method* @param pageNo current page number* @param pageSize paging size* @param count number of data items*/ public Page(int pageNo, int pageSize, long count) { this(pageNo, pageSize, count, new ArrayList<T>()); } /** * Construction method* @param pageNo current page number* @param pageSize paging size* @param count number of data items* @param list list of data objects on this page*/ public Page(int pageNo, int pageSize, long count, List<T> list) { this.setCount(count); this.setPageNo(pageNo); this.pageSize = pageSize; this.list = list; } /** * Initialization parameters */ public void initialize() { //1 this.first = 1; this.last = (int)(count / (this.pageSize < 1 ? 20 : this.pageSize) + first - 1); if (this.count % this.pageSize != 0 || this.last == 0) { this.last++; } if (this.last < this.first) { this.last = this.first; } if (this.pageNo <= 1) { this.pageNo = this.first; this.firstPage=true; } if (this.pageNo >= this.last) { this.pageNo = this.last; this.lastPage=true; } if (this.pageNo < this.last - 1) { this.next = this.pageNo + 1; } else { this.next = this.last; } if (this.pageNo > 1) { this.prev = this.pageNo - 1; } else { this.prev = this.first; } //2 if (this.pageNo < this.first) {// If the current page is smaller than the home page this.pageNo = this.first; } if (this.pageNo > this.last) {// If the current page is greater than the last page this.pageNo = this.last; } } /** * Output the current page tag by default* <div class="page">${page}</div> */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("<div class=\"fixed-table-pagination\" style=\"display: block;\">"); // sb.append("<div class=\"dataTables_info\">"); // sb.append("<li class=\"disabled controls\"><a href=\"javascript:\">Current"); // sb.append("<input type=\"text\" value=\""+pageNo+"\" onkeypress=\"var e=window.event||this;var c=e.keyCode||e.which;if(c==13)"); // sb.append(funcName+"(this.value,"+pageSize+",'"+funcParam+"');\" onclick=\"this.select();\"/> / "); // sb.append("<input type=\"text\" value=\""+pageSize+"\" onkeypress=\"var e=window.event||this;var c=e.keyCode||e.which;if(c==13)"); // sb.append(funcName+"("+pageNo+",this.value,'"+funcParam+"');\" onclick=\"this.select();\"/>,"); // sb.append("Total" + count + ""+(message!=null?message:"")+"</a></li>\n"); // sb.append("</div>"); long startIndex = (pageNo-1)*pageSize + 1; long endIndex = pageNo*pageSize <=count? pageNo*pageSize:count; sb.append("<div class=\"pull-left pagination-detail\">"); sb.append("<span class=\"pagination-info\">Show records from "+startIndex+" to "+ endIndex +", total "+count+" records</span>"); sb.append("<span class=\"page-list\">Display per page<span class=\"btn-group dropup\">"); sb.append("<button type=\"button\" class=\"btn btn-default btn-outline dropdown-toggle\" data-toggle=\"dropdown\" aria-expanded=\"false\">"); sb.append("<span class=\"page-size\">"+pageSize+"</span> <span class=\"caret\"></span>"); sb.append("</button>"); sb.append("<ul class=\"dropdown-menu\" role=\"menu\">"); sb.append("<li class=\""+getSelected(pageSize,10)+ "\"><a href=\"javascript:"+funcName+"("+pageNo+",10,'"+funcParam+"');\">10</a></li>"); sb.append("<li class=\""+getSelected(pageSize,25)+ "\"><a href=\"javascript:"+funcName+"("+pageNo+",25,'"+funcParam+"');\">25</a></li>"); sb.append("<li class=\""+getSelected(pageSize,50)+ "\"><a href=\"javascript:"+funcName+"("+pageNo+",50,'"+funcParam+"');\">50</a></li>"); sb.append("<li class=\""+getSelected(pageSize,100)+ "\"><a href=\"javascript:"+funcName+"("+pageNo+",100,'"+funcParam+"');\">100</a></li>"); sb.append("</ul>"); sb.append("</span> records</span>"); sb.append("</div>"); // sb.append("<p>Each page<select onChange=\""+funcName+"("+pageNo+",this.value,'"+funcParam+"');\"" +"style=\"display:display !important;\" class=\"form-control mb input-sm\">" + // "<option value=\"10\" "+getSelected(pageSize,10)+ ">10</option>" + // "<option value=\"25\" "+getSelected(pageSize,25)+ ">25</option>" + // "<option value=\"50\" "+getSelected(pageSize,50)+ ">50</option>" + // "<option value=\"100\" "+getSelected(pageSize,100)+ ">100</option>" + // "</select> records, showing " +startIndex+ " to "+ endIndex +" records, totaling "+count+" records</p>"); // sb.append("</div>"); // sb.append("</div>"); sb.append("<div class=\"pull-right pagination-roll\">"); sb.append("<ul class=\"pagination pagination-outline\">"); if (pageNo == first) {// If it is the home page sb.append("<li class=\"paginate_button previous disabled\"><a href=\"javascript:\"><i class=\"fa fa-angle-double-left\"></i></a></li>\n"); sb.append("<li class=\"paginate_button previous disabled\"><a href=\"javascript:\"><i class=\"fa fa-angle-left\"></i></a></li>\n"); } else { sb.append("<li class=\"paginate_button previous\"><a href=\"javascript:\" onclick=\""+funcName+"("+first+","+pageSize+",'"+funcParam+"');\"><i class=\"fa fa-angle-double-left\"></i></a></li>\n"); sb.append("<li class=\"paginate_button previous\"><a href=\"javascript:\" onclick=\""+funcName+"("+prev+","+pageSize+",'"+funcParam+"');\"><i class=\"fa fa-angle-left\"></i></a></li>\n"); } int begin = pageNo - (length / 2); if (begin < first) { begin = first; } int end = begin + length - 1; if (end >= last) { end = last; begin = end - length + 1; if (begin < first) { begin = first; } } if (begin > first) { int i = 0; for (i = first; i < first + slider && i < begin; i++) { sb.append("<li class=\"paginate_button \"><a href=\"javascript:\" onclick=\""+funcName+"("+i+","+pageSize+",'"+funcParam+"');\">" + (i + 1 - first) + "</a></li>\n"); } if (i < begin) { sb.append("<li class=\"paginate_button disabled\"><a href=\"javascript:\">...</a></li>\n"); } } for (int i = begin; i <= end; i++) { if (i == pageNo) { sb.append("<li class=\"paginate_button active\"><a href=\"javascript:\">" + (i + 1 - first) + "</a></li>\n"); } else { sb.append("<li class=\"paginate_button \"><a href=\"javascript:\" onclick=\""+funcName+"("+i+","+pageSize+",'"+funcParam+"');\">" + (i + 1 - first) + "</a></li>\n"); } } if (last - end > slider) { sb.append("<li class=\"paginate_button disabled\"><a href=\"javascript:\">...</a></li>\n"); end = last - slider; } for (int i = end + 1; i <= last; i++) { sb.append("<li class=\"paginate_button \"><a href=\"javascript:\" onclick=\""+funcName+"("+i+","+pageSize+",'"+funcParam+"');\">" + (i + 1 - first) + "</a></li>\n"); } if (pageNo == last) { sb.append("<li class=\"paginate_button next disabled\"><a href=\"javascript:\"><i class=\"fa fa-angle-right\"></i></a></li>\n"); sb.append("<li class=\"paginate_button next disabled\"><a href=\"javascript:\"><i class=\"fa fa-angle-double-right\"></i></a></li>\n"); } else { sb.append("<li class=\"paginate_button next\"><a href=\"javascript:\" onclick=\""+funcName+"("+next+","+pageSize+",'"+funcParam+"');\">" + "<i class=\"fa fa-angle-right\"></i></a></li>\n"); sb.append("<li class=\"paginate_button next\"><a href=\"javascript:\" onclick=\""+funcName+"("+last+","+pageSize+",'"+funcParam+"');\">" + "<i class=\"fa fa-angle-double-right\"></i></a></li>\n"); } sb.append("</ul>"); sb.append("</div>"); sb.append("</div>"); // sb.insert(0,"<ul>\n").append("</ul>\n"); // sb.append("<div style=\"clear:both;\"></div>"); // sb.insert(0,"<div class=\"page\">\n").append("</div>\n"); return sb.toString(); } protected String getSelected(int pageNo, int selectedPageNo){ if(pageNo == selectedPageNo){ //return "selected"; return "active"; }else{ return ""; } } /** * Get the pagination HTML code * @return */ public String getHtml(){ return toString(); } // public static void main(String[] args) { // Page<String> p = new Page<String>(3, 3); // System.out.println(p); // System.out.println("Home: "+p.getFirst()); // System.out.println("Last page: "+p.getLast()); // System.out.println("Previous page: "+p.getPrev()); // System.out.println("Next page: "+p.getNext()); // } /** * Get the total number of settings * @return */ public long getCount() { return count; } /** * Set the total number of data * @param count */ public void setCount(long count) { this.count = count; if (pageSize >= count){ pageNo = 1; } } /** * Get the current page number * @return */ public int getPageNo() { return pageNo; } /** * Set the current page number * @param pageNo */ public void setPageNo(int pageNo) { this.pageNo = pageNo; } /** * Get the page size * @return */ public int getPageSize() { return pageSize; } /** * Set page size (maximum 500) * @param pageSize */ public void setPageSize(int pageSize) { this.pageSize = pageSize <= 0 ? 10 : pageSize; // > 500 ? 500 : pageSize; } /** * Home page index * @return */ @JsonIgnore public int getFirst() { return first; } /** * Last page index * @return */ @JsonIgnore public int getLast() { return last; } /** * Get the total number of pages * @return getLast(); */ @JsonIgnore public int getTotalPage() { return getLast(); } /** * Is it the first page? * @return */ @JsonIgnore public boolean isFirstPage() { return firstPage; } /** * Is it the last page? * @return */ @JsonIgnore public boolean isLastPage() { return lastPage; } /** * Previous page index value * @return */ @JsonIgnore public int getPrev() { if (isFirstPage()) { return pageNo; } else { return pageNo - 1; } } /** * Next page index value * @return */ @JsonIgnore public int getNext() { if (isLastPage()) { return pageNo; } else { return pageNo + 1; } } /** * Get the data object list of this page * @return List<T> */ public List<T> getList() { return list; } /** * Set the data object list of this page * @param list */ public Page<T> setList(List<T> list) { this.list = list; initialize(); return this; } /** * Get the query sort string * @return */ @JsonIgnore public String getOrderBy() { // SQL filtering to prevent injection String reg = "(?:')|(?:--)|(/\\*(?:.|[\\n\\r])*?\\*/)|" + "(\\b(select|update|and|or|delete|insert|trancate|char|into|substr|ascii|declare|exec|count|master|into|drop|execute)\\b)"; Pattern sqlPattern = Pattern.compile(reg, Pattern.CASE_INSENSITIVE); if (sqlPattern.matcher(orderBy).find()) { return ""; } return orderBy; } /** * Set the query sorting, standard query is valid, example: updatedate desc, name asc */ public void setOrderBy(String orderBy) { this.orderBy = orderBy; } /** * Get the name of the js function called by clicking the page number* function ${page.funcName}(pageNo){location="${ctx}/list-${category.id}${urlSuffix}?pageNo="+i;} * @return */ @JsonIgnore public String getFuncName() { return funcName; } /** * Set the name of the js function called when clicking the page number. The default is page, which is used when there are multiple paging objects on one page. * @param funcName defaults to page */ public void setFuncName(String funcName) { this.funcName = funcName; } /** * Get additional parameters of the paging function * @return */ @JsonIgnore public String getFuncParam() { return funcParam; } /** * Set additional parameters for the paging function * @return */ public void setFuncParam(String funcParam) { this.funcParam = funcParam; } /** * Set the prompt message to be displayed after "Total n items"* @param message */ public void setMessage(String message) { this.message = message; } /** * Is paging valid? * @return this.pageSize==-1 */ @JsonIgnore public boolean isDisabled() { return this.pageSize==-1; } /** * Whether to count the total number* @return this.count==-1 */ @JsonIgnore public boolean isNotCount() { return this.count==-1; } /** * Get Hibernate FirstResult */ public int getFirstResult(){ int firstResult = (getPageNo() - 1) * getPageSize(); if (firstResult >= getCount() || firstResult<0) { firstResult = 0; } return firstResult; } /** * Get Hibernate MaxResults */ public int getMaxResults(){ return getPageSize(); } // /** // * Get Spring data JPA paging object // */ // public Pageable getSpringPage(){ // List<Order> orders = new ArrayList<Order>(); // if (orderBy!=null){ // for (String order : StringUtils.split(orderBy, ",")){ // String[] o = StringUtils.split(order, " "); // if (o.length==1){ // orders.add(new Order(Direction.ASC, o[0])); // }else if (o.length==2){ // if ("DESC".equals(o[1].toUpperCase())){ // orders.add(new Order(Direction.DESC, o[0])); // }else{ // orders.add(new Order(Direction.ASC, o[0])); // } // } // } // } // return new PageRequest(this.pageNo - 1, this.pageSize, new Sort(orders)); // } // // /** // * Set the Spring data JPA paging object and convert it to the paging object of this system // */ // public void setSpringPage(org.springframework.data.domain.Page<T> page){ // this.pageNo = page.getNumber(); // this.pageSize = page.getSize(); // this.count = page.getTotalElements(); // this.list = page.getContent(); // } } The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Nginx reverse proxy forwards port 80 requests to 8080
>>: mysql 8.0.12 winx64 download and installation tutorial
<br />This tag can be used to directly add a...
mysql 5.7.21 winx64 installation and configuratio...
Configure Mysql master-slave service implementati...
This article example shares the specific code for...
The input box always displays the input history wh...
hint This plug-in can only be accessed under the ...
I recently encountered a problem when doing IM, a...
Table of contents 1. Background of WAF 2. What is...
For security reasons, Alibaba Cloud Server ECS co...
In order to speed up the parsing of the website, ...
Recently, a system was deployed, using nginx as a...
I recently bought a Tencent Cloud server and buil...
This article shares the specific code for WeChat ...
1. Overall steps At the beginning, we introduced ...
As early as in the CSS2 recommendations in 1998, t...