Mybatis三剑客之----分页插件PageHelper

1.文档地址https://pagehelper.github.io/docs/howtouse/

实现:SpringAop 

第一步 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
                        
                    
                
            
        

3.项目使用

你可能感兴趣的:(mybatis)