关于后端:SSM系列教材-三-PageHelper

43次阅读

共计 7065 个字符,预计需要花费 18 分钟才能阅读完成。


步骤 1: 基于后面的知识点
步骤 2: 先运行,看到成果,再学习
步骤 3: 模拟和排错
步骤 4: 成果
步骤 5:jar 包
步骤 6: 批改 applicationContext.xml
步骤 7:CategoryService
步骤 8:CategoryServiceImpl
步骤 9:CategoryMapper
步骤 10:Category.xml
步骤 11:CategoryController
步骤 12:MybatisTest
步骤 13: 重启 tomcat, 测试

步骤 1 : 基于后面的知识点

本知识点基于 SSM 分页进行,SSM 分页进行是采纳手动 SQL 形式进行,本知识点将采纳 PageHelper 插件进行。
参考:PageHelper 和 Mybatis 整合教程

步骤 2 : 先运行,看到成果,再学习

老规矩,先下载下载区 (点击进入) 的可运行我的项目,配置运行起来,确认可用之后,再学习做了哪些步骤以达到这样的成果。

步骤 3 : 模拟和排错

在确保可运行我的项目可能正确无误地运行之后,再严格照着教程的步骤,对代码模拟一遍。
模拟过程不免代码有出入,导致无奈失去冀望的运行后果,此时此刻通过比拟 正确答案 (可运行我的项目) 和本人的代码,来定位问题所在。
采纳这种形式,学习有成果,排错有效率,能够较为显著地晋升学习速度,跨过学习路上的各个槛。

举荐应用 diffmerge 软件,进行文件夹比拟。把你本人做的我的项目文件夹,和我的可运行我的项目文件夹进行比拟。
这个软件很牛逼的,能够晓得文件夹里哪两个文件不对,并且很显著地标记进去
这里提供了绿色装置和应用教程:diffmerge 下载和应用教程

步骤 4 : 成果

拜访页面看到如图所示成果

http://127.0.0.1:8080/ssm/listCategory

步骤 5 : jar 包

因为是第三方插件,所以须要额定的 jar 包,都在下载区 (点击进入) 提供了下载:pagehelper-5.1.0-beta2.jar,jsqlparser-1.0.jar
下载后放在 WEB-INF/lib 下

步骤 6 : 批改 applicationContext.xml

减少 38-48 的 PageHelper 插件配置

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jdbc="http://www.springframework.org/schema/jdbc"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="
     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
     http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
     http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
     http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
     http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
     http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
    <context:annotation-config />
    <context:component-scan base-package="com.how2java.service" />
    <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName">
            <value>com.mysql.jdbc.Driver</value>
        </property>
        <property name="url">
            <value>jdbc:mysql://localhost:3306/how2java?characterEncoding=UTF-8</value>
        </property>
        <property name="username">
            <value>root</value>
        </property>
        <property name="password">
            <value>admin</value>
        </property>
    </bean>
    <bean id="sqlSession" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="typeAliasesPackage" value="com.how2java.pojo" />
        <property name="dataSource" ref="dataSource"/>
        <property name="mapperLocations" value="classpath:com/how2java/mapper/*.xml"/>
        <property name="plugins">
            <array>
                <bean class="com.github.pagehelper.PageInterceptor">
                    <property name="properties">
                        <!-- 应用上面的形式配置参数,一行配置一个 -->
                        <value>
                        </value>
                    </property>
                </bean>
            </array>
        </property>
    </bean>
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="basePackage" value="com.how2java.mapper"/>
    </bean>

</beans>

步骤 7 : CategoryService

CategoryService 去掉 total 办法和 list(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();
}

步骤 8 : CategoryServiceImpl

CategoryServiceImpl 去掉 total 办法和 list(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;
@Service
public class CategoryServiceImpl  implements CategoryService{
    @Autowired
    CategoryMapper categoryMapper;
    public List<Category> list(){return categoryMapper.list();
    }

}

步骤 9 : CategoryMapper

CategoryMapper 去掉 total 办法和 list(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();}

步骤 10 : Category.xml

Category.xml 去掉 total 对应的 sql 语句,list 也去掉 limit

<?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_     
        </select>
</mapper>

步骤 11 : CategoryController

CategoryController 在调用 categoryService.list(); 之前,执行:

PageHelper.offsetPage(page.getStart(),5);

并通过 int total = (int) new PageInfo<>(cs).getTotal(); 获取总数。
其余都不变

package com.how2java.controller;

import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.support.PagedListHolder;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
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();
        PageHelper.offsetPage(page.getStart(),5);
        List<Category> cs= categoryService.list();
        int total = (int) new PageInfo<>(cs).getTotal();
        page.caculateLast(total);
        // 放入转发参数
        mav.addObject("cs", cs);
        // 放入 jsp 门路
        mav.setViewName("listCategory");
        return mav;
    }

}

步骤 12 : MybatisTest

MybatisTest 类正文掉用旧形式分页的代码,其实全副都正文掉了

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 : 重启 tomcat, 测试

重启 tomcat, 拜访地址:

http://127.0.0.1:8080/ssm/listCategory?start=5

更多内容,点击理解:https://how2j.cn/k/ssm/ssm-pagehelper/1373.html

正文完
 0