zoukankan      html  css  js  c++  java
  • mybatis分页查询(limit分页、RowBounds分页)

    1、limit分页

    (1)mapper接口:

     List<Student> getStudentByLim(HashMap<String, Integer> map);

    (2)配置文件:

        <select id="getStudentByLim" resultType="pers.zhb.pojo.Student" parameterType="map">
            select * from student limit #{startIndex},#{pageSize}
        </select>

    (3)测试:

        @Test
        public void getStudentByLimTest(){
            SqlSession sqlSession= MybatisUtils.getSqlSession();
            StudentMapper studentMapper=sqlSession.getMapper(StudentMapper.class);
            HashMap<String,Integer> map=new HashMap<String, Integer>();
            map.put("startIndex",0);
            map.put("pageSize",3);
            List<Student> students= studentMapper.getStudentByLim(map);
            for(Student student:students){
                System.out.println(student);
            }
        }
    DEBUG [main] - Logging initialized using 'class org.apache.ibatis.logging.log4j.Log4jImpl' adapter.
    DEBUG [main] - Logging initialized using 'class org.apache.ibatis.logging.log4j.Log4jImpl' adapter.
    DEBUG [main] - PooledDataSource forcefully closed/removed all connections.
    DEBUG [main] - PooledDataSource forcefully closed/removed all connections.
    DEBUG [main] - PooledDataSource forcefully closed/removed all connections.
    DEBUG [main] - PooledDataSource forcefully closed/removed all connections.
    DEBUG [main] - Opening JDBC Connection
    DEBUG [main] - Created connection 1728790703.
    DEBUG [main] - Setting autocommit to false on JDBC Connection [com.mysql.jdbc.JDBC4Connection@670b40af]
    DEBUG [main] - ==>  Preparing: select * from student limit ?,? 
    DEBUG [main] - ==> Parameters: 0(Integer), 3(Integer)
    DEBUG [main] - <==      Total: 3
    Student{studentno='201811', sname='zhai', sex='男', birthday='1998-11-11', classno='80501', point='890', phone='1234567890', email='null', clas=null}
    Student{studentno='201812', sname='zhai2', sex='男', birthday='1998-11-11', classno='80601', point='893', phone='19837372533', email='null', clas=null}
    Student{studentno='201813', sname='zhai3', sex='男', birthday='1998-11-11', classno='80501', point='892', phone='19837372534', email='null', clas=null}

    2、RowBounds分页(了解,不建议使用)

    (1)接口:

    List<Student> getStudentByRowBounds();

    (2)配置文件:

        <select id="getStudentByRowBounds" resultType="pers.zhb.pojo.Student">
            select * from student
        </select>

    (3)测试:

        @Test
        public void getStudentByRowBoundsTest(){
            SqlSession sqlSession= MybatisUtils.getSqlSession();
            RowBounds rowBounds=new RowBounds(1,2);
            List<Student> students=sqlSession.selectList
                    ("pers.zhb.mapper.StudentMapper.getStudentByRowBounds",null,rowBounds);
            for (Student student : students) {
                System.out.println(student);
            }
            sqlSession.close();
        }
    DEBUG [main] - Logging initialized using 'class org.apache.ibatis.logging.log4j.Log4jImpl' adapter.
    DEBUG [main] - Logging initialized using 'class org.apache.ibatis.logging.log4j.Log4jImpl' adapter.
    DEBUG [main] - PooledDataSource forcefully closed/removed all connections.
    DEBUG [main] - PooledDataSource forcefully closed/removed all connections.
    DEBUG [main] - PooledDataSource forcefully closed/removed all connections.
    DEBUG [main] - PooledDataSource forcefully closed/removed all connections.
    DEBUG [main] - Opening JDBC Connection
    DEBUG [main] - Created connection 243745864.
    DEBUG [main] - Setting autocommit to false on JDBC Connection [com.mysql.jdbc.JDBC4Connection@e874448]
    DEBUG [main] - ==>  Preparing: select * from student 
    DEBUG [main] - ==> Parameters: 
    Student{studentno='201812', sname='zhai2', sex='男', birthday='1998-11-11', classno='80601', point='893', phone='19837372533', email='null', clas=null}
    Student{studentno='201813', sname='zhai3', sex='男', birthday='1998-11-11', classno='80501', point='892', phone='19837372534', email='null', clas=null}
    DEBUG [main] - Resetting autocommit to true on JDBC Connection [com.mysql.jdbc.JDBC4Connection@e874448]
    DEBUG [main] - Closing JDBC Connection [com.mysql.jdbc.JDBC4Connection@e874448]
    DEBUG [main] - Returned connection 243745864 to pool.

    使用RowBounds实现的分页是基于代码的,二limit实现的分页是基于sql的

    3、分页插件

    官网含有该插件的文档,里面有详细的步骤

     摘自:https://pagehelper.github.io/docs/

  • 相关阅读:
    linux设置网关修改ip
    Linux Source命令及脚本的执行方式解析
    ARM9 S3C2440 定时器中断
    Linux下配置静态IP地址,设置DNS和主机名
    s3c2440外部中断操作
    vmware中为虚拟机添加硬盘空间
    『SHELL』SHELL脚本执行方式
    WCF开发的几个频骤
    MyEclipse下Axis2插件的下载和安装
    WCF系列(二) 使用配置文件构建和使用WCF服务
  • 原文地址:https://www.cnblogs.com/zhai1997/p/12779074.html
Copyright © 2011-2022 走看看