Mybatis分页插件的使用配置

  • 开源中国介绍参考地址:

  • http://www.oschina.net/p/mybatis_pagehelper

  •  Github 源码介绍地址:  

  • https://github.com/pagehelper/Mybatis-PageHelper

  • 使用配置

  • 1、修改 pom 文件, 添加分页 jar 包依赖

  •  
  •     
        
          com.github.pagehelper
          pagehelper
          4.1.0
        
  • 2、修改 mybatis.xml 文件 

  •  
  • 
            
            
                
                
                
                
                
                
                
                
                
                
                
                
                
                
                
                
                
                
                
            
        
  • 3、UserDao 接口, UserMapper.xml 添加对应方法与实现 sql

  • 4、对应 UserService 接口添加分页查询方法

  • 备注:分页插件 如果传入的页码 操作记录总页数 此时我们得到的是最后一页的记录

你可能感兴趣的:(Mybatis)