首先后台分页需要理清分页思路,把数据库里面需要分页的信息放到List集合中,然后按照页面反馈给后台的页码对List集合进行SubList切割把切完的List传到前端进行显示。
1.分页的demo文件结构图
导入的包
2.代码
SplitPageServlet代码
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70 |
package ActionServlet; import java.io.IOException; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import Bean.ProjectBean; import Service.SplitPage; /** * Servlet implementation class SplitPageServlet */ @WebServlet ( "/SplitPageServlet" ) public class SplitPageServlet extends HttpServlet { private static final long serialVersionUID = 1L; /** * @see HttpServlet#HttpServlet() */ public SplitPageServlet() { super (); // TODO Auto-generated constructor stub } /** * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) */ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub List new ArrayList String currrentPageString = request.getParameter( "currrentPage" ); String numberForSplitPage = request.getParameter( "numberForSplitPage" ); if ( currrentPageString == null ){ currrentPageString = "1" ; } if ( numberForSplitPage == null ){ numberForSplitPage = "5" ; } SplitPage splitPage = new SplitPage(); try { listArr = splitPage.AllSplitPage(numberForSplitPage, currrentPageString); request.setAttribute( "subResult" , listArr); } catch (ClassNotFoundException | SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } System.out.println(SplitPage.pageNumber); System.out.println(SplitPage.currentPageIndex); request.setAttribute( "pageNumber" , SplitPage.pageNumber); request.setAttribute( "currentPageIndex" , SplitPage.currentPageIndex); request.getRequestDispatcher( "/servlet/ShowViewIndex" ).forward(request, response); } /** * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) */ protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub doGet(request, response); } } |
ProjectBean代码
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51 |
package Bean; public class ProjectBean { private String projectId = null ; private String projectName = null ; private String projectType = null ; private String userNo = null ; private String projectUser = null ; public String getProjectId(){ if (projectId== null ){ projectId = "" ; } return this .projectId; } public void setProjectId(String projectId){ this .projectId = projectId; } public void setProjectName(String projectName){ this .projectName = projectName; } public String getProjectName(){ return this .projectName; } public void setType(String projectType){ this .projectType = projectType; } public String getProjectType(){ return this .projectType; } public void setUserNo(String userNo){ this .userNo = userNo; } public String getUserNo(){ return this .userNo; } public void setProjectUser(String projectUser){ this .projectUser = projectUser; } public String getProjectUser(){ return this .projectUser; } } |
SplitPageBean 代码
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77 |
package Bean; public class SplitPageBean { private int allitems; //总的记录数 private int currentRecord; //当前的记录数 private int lastPageRecord ; //上一页记录数开始数 private int nextPageRecord; //下一页记录数开始数 private int lastPageIndex ; //上一页 private int nextPageIndex; //下一页 private int currentPageIndex; //当前页 private int numberForSplitPage; //每页分的数量 private int allPageNumber; public int getAllitems(){ return this .allitems; } public void setAllitems( int allitems){ this .allitems = allitems; } public int getCurrentRecord(){ return this .currentRecord; } public void setCurrentRecord( int currentPageIndex){ this .currentRecord = currentPageIndex * this .numberForSplitPage; } public int getlastPageRecord(){ return this .lastPageRecord; } public void setLastPageRecord( int lastPageIndex){ this .lastPageRecord = lastPageIndex * this .numberForSplitPage; } public int getNextPageRecord(){ return this .nextPageRecord; } public void setNextPageRecord( int nextPageIndex){ this .nextPageRecord = nextPageIndex * this .numberForSplitPage; } public int getLastPageIndex(){ return this .lastPageIndex; } public void setLastPageIndex( int currentPageIndex){ this .lastPageIndex = currentPageIndex - 1 ; } public int getNextPageIndex(){ return this .nextPageIndex; } public void setNextPageIndex( int currentPageIndex){ this .nextPageIndex = currentPageIndex - 1 ; } public int getCurrentPageIndex(){ return this .currentPageIndex; } public void setCurrentPageIndex( int currentPageIndex){ this .currentPageIndex = currentPageIndex; } public int getNumberForSplitPage(){ return this .numberForSplitPage; } public void setNumberForSplitPage( int numberForSplitPage){ this .numberForSplitPage = numberForSplitPage; } public int getAllPageNumber(){ return this .allPageNumber; } public void setAllPageNumber( int allitems){ this .allPageNumber = allitems / this .numberForSplitPage + 1 ; } } |
QueryProject代码
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47 |
package Dao; import java.sql.Connection; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.util.ArrayList; import java.util.List; import Bean.ProjectBean; import Service.ConnectDataBase; public class QueryProject { private List new ArrayList(); public List throws ClassNotFoundException, SQLException{ Connection conn= null ; Statement stat= null ; ResultSet rs= null ; ConnectDataBase connectDataBase = new ConnectDataBase(); conn = connectDataBase.connect(); stat = conn.createStatement(); rs = stat.executeQuery( "select*from project" ); while (rs.next()){ ProjectBean projectBean = new ProjectBean(); projectBean.setProjectId(rs.getString( "projectId" )); projectBean.setProjectName(rs.getString( "projectName" )); projectBean.setType(rs.getString( "projectType" )); projectBean.setUserNo(rs.getString( "UserNo" )); projectBean.setProjectUser(rs.getString( "projectUser" )); listArr.add(projectBean); } connectDataBase.close(stat, conn); return listArr; } // public static void main(String[] args) throws ClassNotFoundException, SQLException{ // List // QueryProject queryProject = new QueryProject(); // listArr = queryProject.QueryAllProject(); // ProjectBean projectBean = new ProjectBean(); // projectBean = listArr.get(0); // System.out.println(projectBean.getProjectId()); // projectBean = listArr.get(2); // System.out.println(projectBean.getProjectId()); // System.out.println(listArr.size()); // } } |
ConenctDataBase代码
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 |
package Service; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.sql.Statement; public class ConnectDataBase { private String user = "root" ; private String password = "12345" ; public Connection connect() throws ClassNotFoundException, SQLException{ Class.forName( "com.mysql.jdbc.Driver" ); Connection conn = DriverManager.getConnection(url,user,password); return conn; } //关闭数据库资源 public void close(Statement stat,Connection conn) throws SQLException{ if (stat!= null ){ stat.close(); } if (conn!= null ){ conn.close(); } } } |
SplitPage代码
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67 |
package Service; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; import Bean.ProjectBean; import Bean.SplitPageBean; import Dao.QueryProject; public class SplitPage { public static int pageNumber; public static int currentPageIndex; private List new ArrayList(); { QueryProject queryProject = new QueryProject(); try { splitArr = queryProject.QueryAllProject(); } catch (ClassNotFoundException | SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } } public List throws ClassNotFoundException, SQLException{ List new ArrayList int numberForSplitPageInt = Integer.parseInt(numberForSplitPage); //每页的数量 int requestPageIndexInt = Integer.parseInt(requestPageIndex); //请求的页码 SplitPageBean splitPageBean = new SplitPageBean(); splitPageBean.setAllitems(splitArr.size()); //设置总的记录数 splitPageBean.setNumberForSplitPage(numberForSplitPageInt); //设置每页的记录数量 splitPageBean.setAllPageNumber(splitArr.size()); pageNumber = splitPageBean.getAllPageNumber(); splitPageBean.setCurrentPageIndex(requestPageIndexInt); //设置请求页页码 currentPageIndex = splitPageBean.getCurrentPageIndex(); splitPageBean.setLastPageRecord(requestPageIndexInt- 1 ); if (splitPageBean.getAllitems() result = splitArr; } else if (splitPageBean.getCurrentPageIndex()*splitPageBean.getNumberForSplitPage() > splitPageBean.getAllitems()){ result = splitArr.subList(splitPageBean.getlastPageRecord(),splitPageBean.getAllitems()); } else { result = splitArr.subList(splitPageBean.getlastPageRecord(),splitPageBean.getlastPageRecord()+splitPageBean.getNumberForSplitPage()); //SubList用法不包含末尾索引 } return result; } // public static void main(String[] args) throws ClassNotFoundException, SQLException{ // List // ProjectBean projectBean = new ProjectBean(); // SplitPage splitPage = new SplitPage(); // TestResult = splitPage.AllSplitPage("5","1"); // projectBean = TestResult.get(0); // System.out.println(projectBean.getProjectId()); // projectBean = TestResult.get(1); // System.out.println(projectBean.getProjectId()); // projectBean = TestResult.get(2); // System.out.println(projectBean.getProjectId()); // projectBean = TestResult.get(3); // System.out.println(projectBean.getProjectId()); // projectBean = TestResult.get(4); // System.out.println(projectBean.getProjectId()); // projectBean = TestResult.get(5); // System.out.println(projectBean.getProjectId()); // // } } |
显示层
ShowViewIndex代码
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41 |
package View; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * Servlet implementation class ShowViewIndex */ @WebServlet ( "/ShowViewIndex" ) public class ShowViewIndex extends HttpServlet { private static final long serialVersionUID = 1L; /** * @see HttpServlet#HttpServlet() */ public ShowViewIndex() { super (); // TODO Auto-generated constructor stub } /** * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) */ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub request.getRequestDispatcher( "/NewFile.jsp" ).forward(request, response); } /** * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) */ protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub doGet(request, response); } } |
jsp页面代码
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65 |
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> http://www.w3.org/TR/html4/loose.dtd"> < html > < head > < meta http-equiv = "Content-Type" content = "text/html; charset=ISO-8859-1" > < title >数据库内容分页显示< CODE> < style type = "text/css" > *{ margin:0; padding:0;} ul li{ width:50px; height:24px; line-height:24px; float:left; margin-left:0px; display:inline; margin-top:5px; overflow:hidden;} ul li button{width:50px;height:24px;margin:0px;padding:0px;} < CODE> < CODE> < body > < table > < thead > < tr > < th style = "text-align:center;" >编号< CODE> < th style = "text-align:center;" >名称< CODE> < th style = "text-align:center;" >类型< CODE> < th style = "text-align:center;" >学号< CODE> < th style = "text-align:center;" >负责人< CODE> < CODE> < CODE> < tbody > < c:forEach var = "project" items = "${subResult}" > < tr > < td >< c:out value = "${project.projectId}" >< CODE> < td >< c:out value = "${project.projectName}" >< CODE> < td >< c:out value = "${project.projectType}" >< CODE> < td >< c:out value = "${project.userNo}" >< CODE> < td >< c:out value = "${project.projectUser}" >< CODE> < CODE> < CODE> < CODE> < CODE> < div align = "center" > < ul > < c:choose > < c:when test="${currentPageIndex>1}"> < li >< a href = "${pageContext.request.contextPath}/servlet/SplitPageServlet?currrentPage=${currentPageIndex-1}" >< button ><< CODE> < CODE> < c:otherwise > < li >< a >< button ><< CODE> < CODE> < CODE> <% int i =(Integer)request.getAttribute("pageNumber"); for (int j=0;j< i ;j++) {%> < li >< a href="${pageContext.request.contextPath}/servlet/SplitPageServlet?currrentPage=<%=j+1%>">< button ><%=j+1%>< CODE> <%}%> < c:choose > < c:when test = "${currentPageIndex+1<=pageNumber}" > < li >< a href = "${pageContext.request.contextPath}/servlet/SplitPageServlet?currrentPage=${currentPageIndex+1}" >< button >>< CODE> < CODE> < c:otherwise > < li >< a >< button >>< CODE> < CODE> < CODE> < CODE> < CODE> < CODE> < CODE> |
xml代码
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 |
xml version = "1.0" encoding = "UTF-8" ?> < web-app xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance" xmlns = "http://java.sun.com/xml/ns/javaee" xsi:schemaLocation = "http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version = "2.5" > < display-name >< CODE> < welcome-file-list > < welcome-file >SplitPageServlet< CODE> < CODE> < servlet > < servlet-name >ShowViewIndex< CODE> < servlet-class >View.ShowViewIndex< CODE> < CODE> < servlet-mapping > < servlet-name >ShowViewIndex< CODE> < url-pattern >/servlet/ShowViewIndex< CODE> < CODE> < servlet > < servlet-name >SplitPageServlet< CODE> < servlet-class >ActionServlet.SplitPageServlet< CODE> < CODE> < servlet-mapping > < servlet-name >SplitPageServlet< CODE> < url-pattern >/servlet/SplitPageServlet< CODE> < CODE> < CODE> |
运行结果展示
数据库describe
同时在本次demo中认识到了xml的中使用欢迎界面通过
初学java和javaee 写一点自己做的东西,代码写的不是很规范,不喜勿喷。
以上就是本文的全部内容,希望对大家的学习有所帮助
jsp复习资料汇总
[JSP]2017年1月24日asp教程编程辅导汇总
[ASP]2016年12月2日JSP快速入门教程汇总
[JSP]2016年12月2日jsp基本用法和命令汇总
[JSP]2016年10月3日ASP编码教程:如何实现/使用缓存
[ASP]2015年4月15日