分页是java WEB项目常用的功能,昨天在sPRing MVC中实现了简单的分页操作和搜索分页,在此记录一下。使用的框架为(MyBatis+SpringMVC+Spring)。
首先我们需要一个分页的工具类:
%20 %20 %20 %20接下来实现类中的方法就是要调用DAO层和接受Controller传入的参数,进行业务逻辑的处理,request用来获取前端传入的参数,model用来向jsp页面返回处理结果。
[java] view%20plain copy print?@Override public void showProductsByPage(HttpServletRequest request, Model model,int loginUserId) { String pageNow = request.getParameter("pageNow"); Page page = null; List<ProductWithBLOBs> products = new ArrayList<ProductWithBLOBs>(); int totalCount = (int) productDao.getProductsCount(loginUserId); if (pageNow != null) { page = new Page(totalCount, Integer.parseInt(pageNow)); allProducts = this.productDao.selectProductsByPage(page.getStartPos(), page.getPageSize(), loginUserId); } else { page = new Page(totalCount, 1); allProducts = this.productDao.selectProductsByPage(page.getStartPos(), page.getPageSize(), loginUserId); } model.addAttribute("products", products); model.addAttribute("page", page); }%20 %20 接下来是控制器的编写,当用户需要跳转到这个现实产品的页面时,就需要经过这个控制器中相应方法的处理,这个处理过程就是调用业务层的方法来完成,然后返回结果到JSP动态显示,服务器端生成好页面后传给客户端(浏览器)现实,这就是一个MVC过程。
[java] view%20plain copy print?/** * 初始化 “我的产品”列表 JSP页面,具有分页功能 * * @param request * @param model * @return */ @RequestMapping(value = "映射路径", method = RequestMethod.GET) public String showMyProduct(HttpServletRequest request, Model model) { // 取得session中的loginUser User loginUser = (User) request.getSession().getAttribute("loginUser"); // 判断SESSION是否失效 if (loginUser == null || "".equals(loginUser)) { return "redirect:/"; } int loginUserId = loginUser.getUserId(); //此处的productService是注入的iproductService接口的对象 this.productService.showProductsByPage(request, model, loginUserId); return "跳转到的JSP路径"; } %20 %20 %20 JSP页面接受部分我就不写了,每个人都一样,也就是结合JSTL和EL来写,(在循环输出的时候也做了判断,如果接受的参数为空,那么输出暂无商品,只有接受的参数不为空的时候,才循环输出,使用<<c:when%20test="${}">结合<c:otherwise>),这里只给出分页的相关代码:[html] view%20plain copy print?<!-- 分页功能 start --> <div align="center"> <font size="2">共 ${page.totalPageCount} 页</font> <font size="2">第 ${page.pageNow} 页</font> <a href="myProductPage?pageNow=1">首页</a> <c:choose> <c:when test="${page.pageNow - 1 > 0}"> <a href="myProductPage?pageNow=${page.pageNow - 1}">上一页</a> </c:when> <c:when test="${page.pageNow - 1 <= 0}"> <a href="myProductPage?pageNow=1">上一页</a> </c:when> </c:choose> <c:choose> <c:when test="${page.totalPageCount==0}"> <a href="myProductPage?pageNow=${page.pageNow}">下一页</a> </c:when> <c:when test="${page.pageNow + 1 < page.totalPageCount}"> <a href="myProductPage?pageNow=${page.pageNow + 1}">下一页</a> </c:when> <c:when test="${page.pageNow + 1 >= page.totalPageCount}"> <a href="myProductPage?pageNow=${page.totalPageCount}">下一页</a> </c:when> </c:choose> <c:choose> <c:when test="${page.totalPageCount==0}"> <a href="myProductPage?pageNow=${page.pageNow}">尾页</a> </c:when> <c:otherwise> <a href="myProductPage?pageNow=${page.totalPageCount}">尾页</a> </c:otherwise> </c:choose> </div> <!-- 分页功能 End -->%20 %20 %20这里给出控制器的代码作为参考:
[java] view%20plain copy print?/** * 通过 产品名称 查询产品 * @param request * @param model * @return */ @RequestMapping(value = "映射地址", method = RequestMethod.GET) public String searchForProducts(HttpServletRequest request, Model model) { HttpSession session = request.getSession(); String param = request.getParameter("param"); String condition = (String) session.getAttribute("condition"); //先判断SESSION中的condition是否为空 if (condition == null) { condition = new String(); session.setAttribute("condition", condition); //如果Session中的condition为空,再判断传入的参数是否为空,如果为空就跳转到搜索结果页面 if (param == null || "".equals(param)) { return "private/space/ProductSearchResult"; } } //如果SESSION不为空,且传入的搜索条件param不为空,那么将param赋值给condition if (param != null && !("".equals(param))) { condition = param; session.setAttribute("condition", condition); } //使用session中的condition属性值来作为查询条件 this.productService.showSearchedProductsByPage(request, model, condition); return "跳转的页面"; }新闻热点
疑难解答