参考:http://www.htmleaf.com/jQuery/Layout-Interface/201711204837.html
实现思路:
建立一个JavaPage作为实体类,同时生成getter和setter方法。
1 public class JavaPage { 2 //信息总数 3 private int totals; 4 //页面大小 5 private int pageSize; 6 7 public int getTotals() { 8 return totals; 9 } 10 11 public void setTotals(int totals) { 12 this.totals = totals; 13 } 14 15 public int getPageSize() { 16 return pageSize; 17 } 18 19 public void setPageSize(int pageSize) { 20 this.pageSize = pageSize; 21 } 22 }
可能用到的数据库语句。
1 select count (*) from ? WHERE user_id = ?
整合到自己的项目网页当中
JavaScript:
获取当前页数,向后台进行发送
n:求第几页的数据
m:每页显示m条数据
1 select * from tablename limit (n-1)*m,m;