- 浏览: 35884 次
- 来自: ...
最近访客 更多访客>>
最新评论
-
wushengwuxi:
dtree在IE9中无法正常显示
dTree -
zjnu09220229:
楼主的这个貌似对我很有用,不知可否将完整的代码让我看下,不胜感 ...
dTree -
linshutao:
就素就素,木有注释,不如不写~~
web.xml配置笔记 -
xutao5641745:
光写上有屁用?注释都不给个。。。。。。。。
web.xml配置笔记 -
southking:
<div class="quote_title ...
我的女朋友说我的老婆是电脑
PageControlData.java
PageResultData.java
在Form中添加如下代码:
在Action的方法中添加如下代码:
在dao中添加如下方法:
package application.common.util; import java.io.Serializable; @SuppressWarnings("serial") public class PageControlData implements Serializable { //默认页面尺寸 private static final int DEFULT_PAGE_SIZE = 10; /** * 页面总数 */ private int pageCount; /** * 当前页面序号 */ private int currentPage; /** * 总记录条数 */ private int resultCount; /** * 页面尺寸 */ private int pageSize = DEFULT_PAGE_SIZE; /** * 跳转到的页面序号 */ private int changePageNumber; /** * 起始的记录序号 */ @SuppressWarnings("unused") private int startRowNum; /** * 终了记录序号 */ @SuppressWarnings("unused") private int endRowNum; /** * @roseuid 42F3107F02D9 */ public PageControlData() { } /** * Access method for the pageCount property. * * @return the current value of the pageCount property */ public int getPageCount() { //判断记录总数是否能整除页尺寸 if (resultCount % pageSize == 0) { //整除则直接取整相除 pageCount = (resultCount / pageSize); } else { //否则取整相除后加一 pageCount = (resultCount / pageSize) + 1; } return pageCount; } /** * Sets the value of the pageCount property. * * @param aPageCount the new value of the pageCount property */ public void setPageCount(int aPageCount) { pageCount = aPageCount; } /** * Access method for the currentPage property. * * @return the current value of the currentPage property */ public int getCurrentPage() { // 判断总记录数大于零且当前也是小于一的情况 if (currentPage < 1 && resultCount > 0) { currentPage = 1; } //判断当前页序号是否溢出 if (currentPage > getPageCount()) { currentPage = pageCount; } return currentPage; } /** * Sets the value of the currentPage property. * * @param aCurrentPage the new value of the currentPage property */ public void setCurrentPage(int aCurrentPage) { //设置当前页序号、小于零的情况忽略 if (aCurrentPage >= 0) { currentPage = aCurrentPage; } } /** * Access method for the resultCount property. * * @return the current value of the resultCount property */ public int getResultCount() { return resultCount; } /** * Sets the value of the resultCount property. * * @param aResultCount the new value of the resultCount property */ public void setResultCount(int aResultCount) { //设置总记录条数 resultCount = aResultCount; } /** * Access method for the pageSize property. * * @return the current value of the pageSize property */ public int getPageSize() { return pageSize; } /** * Sets the value of the pageSize property. * * @param aPageSize the new value of the pageSize property */ public void setPageSize(int aPageSize) { pageSize = aPageSize; } /** * Access method for the changePageNumber property. * * @return the current value of the changePageNumber property */ public int getChangePageNumber() { return changePageNumber; } /** * Sets the value of the changePageNumber property. * * @param aChangePageNumber the new value of the changePageNumber property */ public void setChangePageNumber(int aChangePageNumber) { //设置跳转到的页面序号 changePageNumber = aChangePageNumber; //设置当前页序号 setCurrentPage(changePageNumber); } /** * Determines if the isFirstPage property is true. * * @return <code>true<code> if the isFirstPage property is true */ public boolean getIsFirstPage() { return currentPage <= 1 ? true : false; } /** * Determines if the isLastPage property is true. * * @return <code>true<code> if the isLastPage property is true */ public boolean getIsLastPage() { return pageCount <= currentPage ? true : false; } /** * Access method for the startRowNum property. * * @return the current value of the startRowNum property */ public int getStartRowNum() { //判断记录总数是否能整除页尺寸 if (currentPage > getPageCount()) { currentPage = pageCount; } return ((currentPage - 1) * pageSize > 0 ? (currentPage - 1) * pageSize : 0); } /** * Access method for the endRowNum property. * * @return the current value of the endRowNum property */ public int getEndRowNum() { //判断记录总数是否能整除页尺寸 if (currentPage > getPageCount()) { currentPage = pageCount; } //如果当前页小于一则结束序号为页面大小,否则按公式计算 return (currentPage - 1) > 0 ? (currentPage - 1) * pageSize + pageSize : pageSize; } /** * Sets the value of the startRowNum property. * * @param aStartRowNum the new value of the startRowNum property */ public void setStartRowNum(int aStartRowNum) { startRowNum = aStartRowNum; } /** * Sets the value of the endRowNum property. * * @param aEndRowNum the new value of the endRowNum property */ public void setEndRowNum(int aEndRowNum) { endRowNum = aEndRowNum; } /** * * 方法名称: init * 内容摘要: 初始化分页对象 */ public void init() { //初始化页面总数 pageCount = 0; //初始化当前页面序号 currentPage = 0; //初始化总记录条数 resultCount = 0; //初始化页面尺寸 pageSize = DEFULT_PAGE_SIZE; } }
PageResultData.java
package application.common.util; import java.io.Serializable; import java.util.ArrayList; import java.util.List; @SuppressWarnings("serial") public class PageResultData implements Serializable { // 页面控制对象 private PageControlData pageControlData = new PageControlData(); // 当前也数据列表 private List pageList = new ArrayList(); // 分页条 private String pageBar = ""; public String getPageBar() { return pageBar; } public void setPageBar(String pageBar) { this.pageBar = pageBar; } /** * @return */ public PageControlData getPageControlData() { return pageControlData; } /** * @return */ public List getPageList() { return pageList; } /** * @param data */ public void setPageControlData(PageControlData data) { pageControlData = data; } /** * @param list */ public void setPageList(List list) { pageList = list; } /** * 方法名称: getScriptCode 内容摘要: 获得标签中的JavaScript语句 * * @return String JavaScript语句 */ public String getScriptCode(String formName, String formActionName, String formActionValue) { StringBuffer js = new StringBuffer(); js.append("<Script language=\"javaScript\">\n"); js.append("function goPage(thePage){\n"); js.append("document." + formName); js.append(".elements(\"pageResult.pageControlData.changePageNumber\").value=thePage;\n"); if (formActionValue != null) { js.append("document." + formName + ".elements(\""); if (formActionName != null) { js.append(formActionName); } else { js.append("formAction"); } js.append("\").value=\"" + formActionValue + "\";\n"); } js.append("document." + formName + ".submit();\n" + "}\n</script>\n"); return js.toString(); } /** * 方法名称: getPageCode 内容摘要: 获得页面中需要显示的代码的中文版 * * @param sourcePageControlData * @param funName * String 标签中的JavaScript方法名称 * @param hasFunctionName * 是否存在JavaScript方法名称 * @return String 面中需要显示的代码 */ public String getPageCodeChinese(String formName, String formActionValue, String formActionName, PageControlData sourcePageControlData) { StringBuffer pageCode = new StringBuffer(); pageCode.append(getScriptCode(formName,formActionName,formActionValue)); pageCode.append("<input type=\"hidden\" name=\"").append("pageResult.pageControlData").append( ".resultCount\" value=\"").append(sourcePageControlData.getResultCount()).append("\">\n"); // "<input type=\"hidden\" name=\""+pageDataName+".currentPage\" // value=\"-1\">\n"+ pageCode.append("<table cellspacing=\"0\" class=\"pageno\">\n<tr class=\"tr_pagenumber\">\n"); pageCode.append("<td>\n第").append(sourcePageControlData.getCurrentPage()).append("页/共").append( sourcePageControlData.getPageCount()).append("页"); pageCode.append(" 共").append(sourcePageControlData.getResultCount()).append("条记录 每页"); pageCode.append("<select size=\"1\" name=\"").append("pageResult.pageControlData").append(".pageSize\" ") .append("style=\"border-bottom-style: solid\" onchange=\""); if (formActionValue != null) { pageCode.append("document.").append(formName).append(".elements(\'"); if (formActionName != null) { pageCode.append(formActionName); } else { pageCode.append("formAction"); } pageCode.append("\').value = \'").append(formActionValue).append("\';\n"); } // pageCode += "document." + name + // ".elements(\'"+pageDataName+".currentPage\').value=-1;\n"; pageCode.append("document.").append(formName).append(".submit();\" "); if (0 == sourcePageControlData.getResultCount()) { pageCode.append(" disabled=\"disabled\" "); } pageCode.append(">\n"); // } pageCode.append("<option value=\"5\" "); if (sourcePageControlData.getPageSize() == 5) { pageCode.append("selected "); } pageCode.append(">5</option>\n<option value=\"10\" "); if (sourcePageControlData.getPageSize() == 10) { pageCode.append("selected "); } pageCode.append(">10</option>\n<option value=\"20\" "); if (sourcePageControlData.getPageSize() == 20) { pageCode.append("selected "); } pageCode.append(">20</option>\n<option value=\"40\" "); if (sourcePageControlData.getPageSize() == 40) { pageCode.append("selected "); } pageCode.append(">40</option>\n<option value=\"80\" "); if (sourcePageControlData.getPageSize() == 80) { pageCode.append("selected "); } pageCode.append(">80</option>\n<option value=\"100\" "); if (sourcePageControlData.getPageSize() == 100) { pageCode.append("selected "); } pageCode.append(">100</option>\n<option value=\"120\" "); if (sourcePageControlData.getPageSize() == 120) { pageCode.append("selected "); } pageCode.append(">120</option>\n</select>\n行 "); if (!sourcePageControlData.getIsFirstPage()) { // pageCode.append("<img src=\"../../images/table/firstPage.gif\" title=\"第一页\" style=\"cursor: hand;\" onclick=\"") // .append("goPage").append("(1);\"> ").append(" ").append( // "<img src=\"../../images/table/prevPage.gif\" title=\"上一页\" style=\"cursor: hand;\" onclick=\"") // .append("goPage").append("(").append((sourcePageControlData.getCurrentPage() - 1)).append(");\"> ") // .append("\n"); pageCode.append("<a href=\"javascript:") .append("goPage").append("(1)\"; title=\"首页\" style=\"font-family:Webdings!important;\"> 9 </a> ").append("").append( "<a href=\"javascript:") .append("goPage").append("(").append((sourcePageControlData.getCurrentPage() - 1)).append(")\"; title=\"上一页\" style=\"font-family:Webdings!important;\"> 7 </a> ") .append("\n"); } else { pageCode.append("<font title=\"首页\" style=\"font-family:Webdings!important;\"> 9 </font>").append("").append( "<font title=\"上一页\" style=\"font-family:Webdings!important;\"> 7 </font>"); } pageCode.append("<select size=\"1\" name=\"").append("pageResult.pageControlData").append( ".changePageNumber\" ").append("style=\"border-bottom-style: solid\" onchange=\"").append("goPage") .append("(this.value);\" "); if (0 == sourcePageControlData.getResultCount()) { pageCode.append(" disabled=\"disabled\" "); } pageCode.append(">\n"); // 页面选择下拉框 // String optionString = ""; for (int i = 0; i < sourcePageControlData.getPageCount(); i++) { pageCode.append("<option value=\"").append((i + 1)).append("\" "); if (sourcePageControlData.getCurrentPage() == i + 1) { pageCode.append("selected "); } pageCode.append(">").append((i + 1)).append("</option>\n"); } // pageCode += optionString; pageCode.append("</select> \n "); if (!sourcePageControlData.getIsLastPage()) { pageCode.append("<a href=\"javascript:") .append("goPage").append("(").append((sourcePageControlData.getCurrentPage() + 1)).append(")\" title=\"下一页\" style=\"font-family:Webdings!important;\"> 8 </a> ") .append("").append( "<a href=\"javascript:") .append("goPage").append("(").append((sourcePageControlData.getPageCount())).append(")\" title=\"末页\" style=\"font-family:Webdings!important;\"> : </a>") .append("\n"); } else { pageCode.append("<font title=\"下一页\" style=\"font-family:Webdings!important;\" > 8 </font>").append("").append( "<font title=\"末页\" style=\"font-family:Webdings!important;\" > : </font>\n"); } pageCode.append("</td>\n</tr>\n</table>\n"); return pageCode.toString(); } /** * 方法名称: getPageCode 内容摘要: 获得页面中需要显示的代码的英文版 * * @param sourcePageControlData * @param funName * String 标签中的JavaScript方法名称 * @param hasFunctionName * 是否存在JavaScript方法名称 * @return String 面中需要显示的代码 */ public String getPageCodeEnglish(String formName, String formActionValue, String formActionName, PageControlData sourcePageControlData) { StringBuffer pageCode = new StringBuffer(); pageCode.append(getScriptCode(formName,formActionName,formActionValue)); pageCode.append("<input type=\"hidden\" name=\"").append("pageResult.pageControlData").append( ".resultCount\" value=\"").append(sourcePageControlData.getResultCount()).append("\">\n"); // "<input type=\"hidden\" name=\""+pageDataName+".currentPage\" // value=\"-1\">\n"+ pageCode.append("<table cellspacing=\"0\" class=\"pageno\">\n<tr class=\"tr_pagenumber\">\n"); pageCode.append("<td>\npage:").append(sourcePageControlData.getCurrentPage()).append("/total pages:").append( sourcePageControlData.getPageCount()).append(" total records:"); pageCode.append(" ").append(sourcePageControlData.getResultCount()).append(" "); pageCode.append("<select size=\"1\" name=\"").append("pageResult.pageControlData").append(".pageSize\" ") .append("style=\"border-bottom-style: solid\" onchange=\""); if (formActionValue != null) { pageCode.append("document.").append(formName).append(".elements(\'"); if (formActionName != null) { pageCode.append(formActionName); } else { pageCode.append("formAction"); } pageCode.append("\').value = \'").append(formActionValue).append("\';\n"); } // pageCode += "document." + name + // ".elements(\'"+pageDataName+".currentPage\').value=-1;\n"; pageCode.append("document.").append(formName).append(".submit();\">\n"); // } pageCode.append("<option value=\"5\" "); if (sourcePageControlData.getPageSize() == 5) { pageCode.append("selected "); } pageCode.append(">5</option>\n<option value=\"10\" "); if (sourcePageControlData.getPageSize() == 10) { pageCode.append("selected "); } pageCode.append(">10</option>\n<option value=\"20\" "); if (sourcePageControlData.getPageSize() == 20) { pageCode.append("selected "); } pageCode.append(">20</option>\n<option value=\"40\" "); if (sourcePageControlData.getPageSize() == 40) { pageCode.append("selected "); } pageCode.append(">40</option>\n<option value=\"80\" "); if (sourcePageControlData.getPageSize() == 80) { pageCode.append("selected "); } pageCode.append(">80</option>\n<option value=\"100\" "); if (sourcePageControlData.getPageSize() == 100) { pageCode.append("selected "); } pageCode.append(">100</option>\n<option value=\"120\" "); if (sourcePageControlData.getPageSize() == 120) { pageCode.append("selected "); } pageCode.append(">120</option>\n</select>\nrecords per page "); if (!sourcePageControlData.getIsFirstPage()) { // pageCode.append("<img src=\"../../images/table/firstPage.gif\" title=\"第一页\" style=\"cursor: hand;\" onclick=\"") // .append("goPage").append("(1);\"> ").append(" ").append( // "<img src=\"../../images/table/prevPage.gif\" title=\"上一页\" style=\"cursor: hand;\" onclick=\"") // .append("goPage").append("(").append((sourcePageControlData.getCurrentPage() - 1)).append(");\"> ") // .append("\n"); pageCode.append("<a href=\"javascript:") .append("goPage").append("(1)\"; title=\"First\" style=\"font-family:Webdings!important;\"> 9 </a> ").append(" ").append( "<a href=\"javascript:") .append("goPage").append("(").append((sourcePageControlData.getCurrentPage() - 1)).append(")\"; title=\"Previous\" style=\"font-family:Webdings!important;\"> 7 </a> ") .append("\n"); } else { pageCode.append("<font title=\"First\" style=\"font-family:Webdings!important;\"> 9 </font>").append(" ").append( "<font title=\"Previous\" style=\"font-family:Webdings!important;\"> 7 </font>"); } pageCode.append("<select size=\"1\" name=\"").append("pageResult.pageControlData").append( ".changePageNumber\" ").append("style=\"border-bottom-style: solid\" onchange=\"").append("goPage") .append("(this.value);\">\n"); // 页面选择下拉框 // String optionString = ""; for (int i = 0; i < sourcePageControlData.getPageCount(); i++) { pageCode.append("<option value=\"").append((i + 1)).append("\" "); if (sourcePageControlData.getCurrentPage() == i + 1) { pageCode.append("selected "); } pageCode.append(">").append((i + 1)).append("</option>\n"); } // pageCode += optionString; pageCode.append("</select> \n "); if (!sourcePageControlData.getIsLastPage()) { pageCode.append("<a href=\"javascript:") .append("goPage").append("(").append((sourcePageControlData.getCurrentPage() + 1)).append(")\" title=\"Next\" style=\"font-family:Webdings!important;\"> 8 </a> ") .append(" ").append( "<a href=\"javascript:") .append("goPage").append("(").append((sourcePageControlData.getPageCount())).append(")\" title=\"Last\" style=\"font-family:Webdings!important;\"> : </a>") .append("\n"); } else { pageCode.append("<font title=\"Next\" style=\"font-family:Webdings!important;\" > 8 </font>").append(" ").append( "<font title=\"Last\" style=\"font-family:Webdings!important;\" > : </font>\n"); } pageCode.append("</td>\n</tr>\n</table>\n"); return pageCode.toString(); } }
在Form中添加如下代码:
//分页对象 private PageResultData pageResult = new PageResultData(); public PageResultData getPageResult() { return pageResult; } public void setPageResult(PageResultData pageResult) { this.pageResult = pageResult; }
在Action的方法中添加如下代码:
PageResultData pageResultData = (PageResultData) pageForm.getPageResult(); ApplyApproveAuditingService.queryIApplyApproveAuditingByOrgId(map, pageResultData); String language = request.getLocale().getLanguage(); pageResultData.getPageControlData().setResultCount(pageResultData.getPageControlData().getResultCount() - 1); pageResultData.setPageBar(this.getPageBarBefore(pageResultData, language)); request.setAttribute("auditingList", pageResultData.getPageList()); //保存分页条 request.setAttribute("pageBar", pageResultData.getPageBar()); /** * 返回分页条 * * @return */ private String getPageBarBefore(PageResultData pageResultData, String language) { String formName = "searchAuditingForm"; String formAction = null; String formActionValue = null; if ("zh".equalsIgnoreCase(language)) { return pageResultData.getPageCodeChinese(formName, formActionValue, formAction, pageResultData .getPageControlData()); } else { return pageResultData.getPageCodeEnglish(formName, formActionValue, formAction, pageResultData .getPageControlData()); } }
在dao中添加如下方法:
//分页起始位置 int startRow = pageResultData.getPageControlData().getStartRowNum(); //分页结束位置 int endRow = pageResultData.getPageControlData().getEndRowNum(); pageResultData.setPageList(PandectList); //设置结果集总数 pageResultData.getPageControlData().setResultCount(rs1.getInt(1));
发表评论
-
HttpClient
2009-03-19 09:47 0String url = SUBNODE_UCLO ... -
字符串的压缩和解压(包括加解密)
2008-10-26 18:47 1263import com.util.IArchive; ... -
让select支持onClick
2008-10-26 18:46 3195摘自fins的,留以备用 <!DOCTYPE HT ... -
dTree
2008-10-26 18:45 1603Frame <FRAMESET id=topFrame ... -
随机码生成
2008-10-26 18:45 1534package com.authority.ui.we ... -
会话超时过滤器
2008-10-26 18:44 1733package com.authority.filter; ... -
让select支持onClick
2008-06-06 10:41 0抄自finas的 <!DOCTYPE HTML P ... -
ajax学习笔记备忘
2008-03-19 21:34 848<script language="j ... -
http://imkenwu.javaeye.com/
2008-03-19 21:33 801http://imkenwu.iteye.com/ -
Servlet初始化的方法
2008-03-19 21:33 2864/** * Servlet覆盖初始化方法( ... -
代码格式化
2008-03-19 21:32 852<?xml version="1.0" ... -
导入导出EXCEL笔记
2008-03-17 10:31 2709导出Excel package application ... -
日期控件
2008-03-02 22:27 12日期控件 -
js开发工具
2007-12-25 16:56 716http://www.aptana.com/ -
common包
2007-12-25 10:30 818http://menjoy.iteye.com/blog/48 ... -
通用加密技术学习笔记
2007-12-24 18:16 1467import java.security.MessageD ... -
多线程学习笔记
2007-12-24 15:40 937多线程学习笔记 1、监控线程 priv ... -
数据库连接配置笔记备用
2007-12-24 14:52 821数据库连接配置笔记备用 <?xml version= ... -
web.xml配置笔记
2007-12-24 14:41 2260web.xml配置笔记 < ...
相关推荐
"使用Struts + Spring + Hibernate完成分页笔记"这个主题涵盖了三个关键的Java EE框架:Struts、Spring和Hibernate,它们分别负责表现层、业务逻辑层和数据访问层的管理。下面将详细介绍这三个框架在分页实现中的...
本笔记将详细介绍如何在Struts框架中结合DAO实现分页功能。 首先,我们需要了解MVC模式。Model代表业务逻辑,View负责数据显示,Controller处理用户请求并协调Model和View。DAO则是Model层的一部分,它封装了对...
在本文中,我们将深入探讨如何使用Struts和Hibernate框架来实现高效的分页功能。Struts作为MVC(Model-View-Controller)架构的一部分,主要负责处理用户请求和控制应用程序流程,而Hibernate则是一个强大的对象关系...
本笔记主要关注的是Struts1中的分页功能,这在处理大量数据展示时非常常见,能有效提高用户体验。分页技术允许用户逐页浏览数据,而不是一次性加载所有信息,从而减轻服务器负担,提升页面加载速度。 首先,我们要...
1-JSP+JDBC_假分页笔记 2-JSP+JDBC_真分页(基于Oracle数据库分页)笔记 3-JSP+DAO和MVC+DAO(基于MySQL数据库分页)-v笔记 4-Struts入门笔记 005_Struts+DAO登陆 6-Struts标签-BEAN标签笔记 7-Struts标签 -LOGIC标签...
1-JSP+JDBC_假分页笔记 2-JSP+JDBC_真分页(基于Oracle数据库分页)笔记 3-JSP+DAO和MVC+DAO(基于MySQL数据库分页)-v笔记 4-Struts入门笔记 005_Struts+DAO登陆 6-Struts标签-BEAN标签笔记 7-Struts标签 -LOGIC标签...
### SSH分页功能实现 #### 一、概述 SSH(Struts+Spring+Hibernate)是Java Web开发领域中一种常见的三层架构模式,其中Struts负责表现层,Spring负责业务逻辑层,而Hibernate则用于数据持久化层。在实际项目开发...
1-JSP+JDBC_假分页笔记 2-JSP+JDBC_真分页(基于Oracle数据库分页)笔记 3-JSP+DAO和MVC+DAO(基于MySQL数据库分页)-v笔记 4-Struts入门笔记 005_Struts+DAO登陆 6-Struts标签-BEAN标签笔记 7-Struts标签 -LOGIC标签...
1-JSP+JDBC_假分页笔记.pdf 10-Struts高级部分(2)(常用Action、验证框架、动态Form)笔记.pdf 11-留言管理程序_使用Struts + DAO完成笔记.pdf 12-Struts + DAO分页笔记.pdf 13-Hibernate入门(上)笔记.pdf 14-...
【描述】:描述中的“1-JSP+JDBC_假分页笔记.pdf”提到了JSP(JavaServer Pages)和JDBC(Java Database Connectivity)的结合使用,这是在Web开发中进行数据交互的基础。JSP是一种动态网页技术,允许开发者在HTML中...
"45-Struts+Hibernate完成分页笔记.pdf"展示了如何整合Struts和Hibernate,利用Spring进行分页处理。"46-Spring入门.pdf"则引导初学者了解Spring的核心功能,包括Bean管理、事务控制和Spring与Hibernate的集成。 ...
**JSP+JDBC真分页技术详解** 在Web开发中,为了提高用户体验,通常需要对大量的数据进行分页展示,而不是一次性加载所有数据。这涉及到两种主要的分页方式:假分页和真分页。这两种方法各有优缺点,适用于不同的...
"51-52使用Struts + Spring + Hibernate完成用户登陆笔记.pdf"和"53使用Struts + Spring + Hibernate完成分页笔记.pdf"提供了实际的项目示例,演示了这三个框架如何协同工作,完成用户登录和分页功能。"54留言管理...
1-JSP+JDBC_假分页笔记.pdf 2-JSP+JDBC_真分页(基于Oracle数据库分页)笔记.pdf 3-JSP+DAO和MVC+DAO(基于MySQL数据库分页)-v笔记.pdf 4-Struts入门笔记.pdf 005_Struts+DAO登陆.pdf 9-Struts高级部分(1)(解决重复提交...
1-JSP+JDBC_假分页笔记 9-Struts高级部分(1)(解决重复提交、上传组件)笔记 11-留言管理程序_使用Struts + DAO完成笔记 54留言管理程序_Struts + Spring + Hibernate笔记 ......
在提供的压缩包中,"JSP+JDBC_假分页笔记.pdf"和"JSP+JDBC_真分页(基于Oracle数据库分页)笔记.pdf"深入探讨了如何在JSP中实现分页功能。分页是Web应用中常见的需求,它可以提高用户体验,避免一次性加载大量数据导致...
msql和oracle分页查询语句笔记
Java中级笔记涵盖了多个关键的Web开发技术,包括Servlet、JSP、分页和Ajax。这些技术在构建动态、交互式的Web应用程序中起着至关重要的作用。 1. **Servlet**:Servlet是Java EE平台中的核心组件,它是一个Java类,...
这篇“ExtJS笔记——Grid实现后台分页”探讨了如何在ExtJS的Grid组件中实现高效的后台分页功能。 后台分页是一种常见的数据处理策略,特别是在大数据量的情况下,它将数据分批加载,避免一次性加载所有记录导致的...