ssm框架中使用pagehelper分页

pom.xml中引入

 
      com.github.pagehelper
      pagehelper
      5.1.2
    

在applicationContext.xml中加入


            
                
                    
                        
                        
                            helperDialect=mysql
                            offsetAsPageNum=true
                            rowBoundsWithCount=true
                            pageSizeZero=true
                            reasonable=true
                        
                    
                
            
        

service中使用

controller 中使用

页面的调用

更多精彩文章请关注 王明昌博客

你可能感兴趣的:(php)