Spring-mybatis整合pageHelper以及一些注意事项

官方文档https://pagehelper.github.io/docs/howtouse/+

第一步:导入 jar包(这里用maven导入


    
    
      com.github.pagehelper
      pagehelper
      5.1.4
    
    
    
      com.github.jsqlparser
      jsqlparser
      0.9.5
    

第二步:配置拦截器插件

Spring-mybatis整合pageHelper以及一些注意事项_第1张图片


    
        
        
        
        
        
        
        
        
            
                
                    
                        
                        
                            helperDialect=mysql
                        
                    
                
            
        
    

第三步:写语句测试

mapper

Spring-mybatis整合pageHelper以及一些注意事项_第2张图片

impl

test

Spring-mybatis整合pageHelper以及一些注意事项_第3张图片

 

注意:

特别是第一条

Spring-mybatis整合pageHelper以及一些注意事项_第4张图片

你可能感兴趣的:(Spring-mybatis整合pageHelper以及一些注意事项)