mybatis分页插件配置

首先在pom.xml中添加依赖

 


    com.github.pagehelper
    pagehelper
    4.2.1


    com.github.jsqlparser
    jsqlparser
    0.9.5

 

然后在spring-mybatis.xml中添加如下配置


	

	
	              
        

	
		
			
				
					
						dialect=mysql
						offsetAsPageNum=true
						rowBoundsWithCount=true
						pageSizeZero=true
						reasonable=false
						supportMethodsArguments=false
						returnPageInfo=none
					
				
			
		
	

 

运用:

public List showAll(int page, int pageSize) {

    PageHelper.startPage(page, pageSize);
    List users = userDao.selectAll();
    return users;

}

PageHelper.startPage(1, 10);括号中的参数与sql语句中的limit不同,这里表示展示第一页的十条数据

效果mybatis分页插件配置_第1张图片

你可能感兴趣的:(mybatis,分页)