共计 6134 个字符,预计需要花费 16 分钟才能阅读完成。
步骤 1: 先运行,看到成果,再学习
步骤 2: 模拟和排错
步骤 3: 基于后面的知识点
步骤 4: 本知识点成果
步骤 5: 分页类:Page
步骤 6:Category.xml
步骤 7:CategoryMapper
步骤 8:CategoryService
步骤 9:CategoryServiceImpl
步骤 10:CategoryController
步骤 11:listCategory.jsp
步骤 12: 减少 100 个对象,用于测试
步骤 13: 测试
步骤 1 : 先运行,看到成果,再学习
老规矩,先下载下载区 (点击进入) 的可运行我的项目,配置运行起来,确认可用之后,再学习做了哪些步骤以达到这样的成果。
步骤 2 : 模拟和排错
在确保可运行我的项目可能正确无误地运行之后,再严格照着教程的步骤,对代码模拟一遍。
模拟过程不免代码有出入,导致无奈失去冀望的运行后果,此时此刻通过比拟 正确答案 (可运行我的项目) 和本人的代码,来定位问题所在。
采纳这种形式,学习有成果,排错有效率,能够较为显著地晋升学习速度,跨过学习路上的各个槛。
举荐应用 diffmerge 软件,进行文件夹比拟。把你本人做的我的项目文件夹,和我的可运行我的项目文件夹进行比拟。
这个软件很牛逼的,能够晓得文件夹里哪两个文件不对,并且很显著地标记进去
这里提供了绿色装置和应用教程:diffmerge 下载和应用教程
步骤 3 : 基于后面的知识点
本知识点基于 SSM 整合进行
步骤 4 : 本知识点成果
拜访页面看到如图所示成果
http://127.0.0.1:8080/ssm/listCategory
步骤 5 : 分页类:Page
Page 类用于寄存分页信息:
start: 开始地位
count: 每页的个数
last: 最初一页的地位
caculateLast()办法: 通过总数 total 和每页的个数计算出最初一页的地位
package com.how2java.util;
public class Page {
int start=0;
int count = 5;
int last = 0;
public int getStart() {return start;}
public void setStart(int start) {this.start = start;}
public int getCount() {return count;}
public void setCount(int count) {this.count = count;}
public int getLast() {return last;}
public void setLast(int last) {this.last = last;}
public void caculateLast(int total) {
// 假如总数是 50,是可能被 5 整除的,那么最初一页的开始就是 45
if (0 == total % count)
last = total - count;
// 假如总数是 51,不可能被 5 整除的,那么最初一页的开始就是 50
else
last = total - total % count;
}
}
步骤 6 : Category.xml
批改 list,依据当有分页信息的时候,进行分页查问
减少 total sql 语句
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.how2java.mapper.CategoryMapper">
<insert id="add" parameterType="Category" >
insert into category_ (name) values (#{name})
</insert>
<delete id="delete" parameterType="Category" >
delete from category_ where id= #{id}
</delete>
<select id="get" parameterType="_int" resultType="Category">
select * from category_ where id= #{id}
</select>
<update id="update" parameterType="Category" >
update category_ set name=#{name} where id=#{id}
</update>
<select id="list" resultType="Category">
select * from category_
<if test="start!=null and count!=null">
limit #{start},#{count}
</if>
</select>
<select id="total" resultType="int">
select count(*) from category_
</select>
</mapper>
步骤 7 : CategoryMapper
减少 total 办法用于调用 Category.xml 中 total 对应的 sql 语句
减少 list(Page page),依据分页来查问数据
package com.how2java.mapper;
import java.util.List;
import com.how2java.pojo.Category;
import com.how2java.util.Page;
public interface CategoryMapper {public int add(Category category);
public void delete(int id);
public Category get(int id);
public int update(Category category);
public List<Category> list();
public List<Category> list(Page page);
public int total();}
步骤 8 : CategoryService
减少 total 用于获取所有
减少 list(Page page),依据分页来查问数据
package com.how2java.service;
import java.util.List;
import com.how2java.pojo.Category;
import com.how2java.util.Page;
public interface CategoryService {List<Category> list();
int total();
List<Category> list(Page page);
}
步骤 9 : CategoryServiceImpl
实现 total()和 list(Page page) 办法
package com.how2java.service.impl;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.how2java.mapper.CategoryMapper;
import com.how2java.pojo.Category;
import com.how2java.service.CategoryService;
import com.how2java.util.Page;
@Service
public class CategoryServiceImpl implements CategoryService{
@Autowired
CategoryMapper categoryMapper;
public List<Category> list(){return categoryMapper.list();
}
@Override
public List<Category> list(Page page) {
// TODO Auto-generated method stub
return categoryMapper.list(page);
}
@Override
public int total() {return categoryMapper.total();
};
}
步骤 10 : CategoryController
批改 listCategory,承受分页信息的注入
listCategory(Page page)
依据分页对象,进行查问获取对象汇合 cs
List<Category> cs= categoryService.list(page);
依据总数,计算出最初一页的信息
int
total = categoryService.total();
package com.how2java.controller;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
import com.how2java.pojo.Category;
import com.how2java.service.CategoryService;
import com.how2java.util.Page;
// 通知 spring mvc 这是一个控制器类
@Controller
@RequestMapping("")
public class CategoryController {
@Autowired
CategoryService categoryService;
@RequestMapping("listCategory")
public ModelAndView listCategory(Page page){ModelAndView mav = new ModelAndView();
List<Category> cs= categoryService.list(page);
int total = categoryService.total();
page.caculateLast(total);
// 放入转发参数
mav.addObject("cs", cs);
// 放入 jsp 门路
mav.setViewName("listCategory");
return mav;
}
}
步骤 11 : listCategory.jsp
批改 listCategory.jsp,别离提供首页,上一页,下一页,末页等连贯
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8" import="java.util.*"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<div style="width:500px;margin:0px auto;text-align:center">
<table align='center' border='1' cellspacing='0'>
<tr>
<td>id</td>
<td>name</td>
</tr>
<c:forEach items="${cs}" var="c" varStatus="st">
<tr>
<td>${c.id}</td>
<td>${c.name}</td>
</tr>
</c:forEach>
</table>
<div style="text-align:center">
<a href="?start=0"> 首 页 </a>
<a href="?start=${page.start-page.count}"> 上一页 </a>
<a href="?start=${page.start+page.count}"> 下一页 </a>
<a href="?start=${page.last}"> 末 页 </a>
</div>
</div>
步骤 12 : 减少 100 个对象,用于测试
批改 MybatisTest 类,新增 100 个对象,用于分页测试
package com.how2java.test;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.how2java.mapper.CategoryMapper;
import com.how2java.pojo.Category;
import com.how2java.util.Page;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class MybatisTest {
@Autowired
private CategoryMapper categoryMapper;
// @Test
public void testAdd() {for (int i = 0; i < 100; i++) {Category category = new Category();
category.setName("new Category");
categoryMapper.add(category);
}
}
@Test
public void testTotal() {int total = categoryMapper.total();
System.out.println(total);
}
@Test
public void testList() {Page p = new Page();
p.setStart(2);
p.setCount(3);
List<Category> cs=categoryMapper.list(p);
for (Category c : cs) {System.out.println(c.getName());
}
}
}
步骤 13 : 测试
拜访页面看到如图所示成果
http:
`//127.0.0.1:8080/ssm/listCategory`
更多内容,点击理解:https://how2j.cn/k/ssm/ssm-pagination/1139.html