1.在pom.xml中添加依赖
com.github.pagehelper pagehelper 4.1.4
2.在mybatis-Config.xml中添加分页插件配置
3.service在调用dao层的方法之前加上
PageHelper.startPage(pageNum,1);//表示这一页显示一条记录
-----------------------------------------------------------------------------------------
与上面无关提示:
在dao层如果方法中有多个参数-务必使用注解@Param ------例如:
void updateStatusById(@Param("status") int status,@Param("realCheckId") String realCheckId);