Oracleはmybatis改ページプラグイン-PageHandlerを使用します.

1447 ワード

1. jarパッケージに依存する(https://blog.csdn.net/qq_16517483/article/details/72803043)
使用 PageHelper あなたがいるだけで クラスパス に含める pagehelper-x.x.jar 和 jsql parser-00.95.jar.
2.mybatis-config.xml(https://blog.csdn.net/s592652578/article/details/78179998?locationNum=4&fps=1)
4.0.0バージョンの前:
<plugis>                                                                plugin>       plugins>  4.0.0バージョンの後:
<plugis>                                                         plugin>       plugins>  3.PageHandler
public void testPageHelper() {
    //       sql    ,             
    PageHelper.startPage(1, 5,"id desc");
    List deptList = session.selectList("DEPT.getAllDept");
    PageInfo page = new PageInfo<>(deptList);
    System.out.println("   :" + page.getPages());
    System.out.println("  :" + page.getPageNum());
    System.out.println("   :"+page.getTotal());
    System.out.println(deptList.size());
    for (Dept dept : deptList) {
        System.out.println(dept.getName());
    }
}