Mybatis三剑客(三)Mybatis-PageHelper

MyBatis-PageHelper

这个一个通用的分页插件,使用时 Mybatis 最低版本不能低于3.3
原理:通过aop再截获我们执行sql的时候把相关的数据再执行一次
GitHub地址

1.在pom文件中添加依赖



    com.github.pagehelper
    pagehelper
    4.1.0



    com.github.miemiedev
    mybatis-paginator
    1.2.17



    com.github.jsqlparser
    jsqlparser
    0.9.4

2.在spring配置文件内添加配置


    
    

    
    
        
            
                
                    
                        
                        dialect=mysql
                    
                
            
        
    

你可能感兴趣的:(mysql)