Mybatis是如何进行分页的
2018-07-12 · 国内最优秀java资源共享平台
1.mybatis如何做分页处理
<configuration><!-- 配置分页插件 --><plugins><plugin interceptor="com.github.pagehelper.PageHelper"><!-- 设置数据库类型 Oracle,Mysql,MariaDB,SQLite,Hsqldb,PostgreSQL六种数据库--><property name="dialect" value="mysql"/></plugin></plugins></configuration>
2.jar包
3.案例 直接使用
public EasyUIResult findParamsList(Integer page, Integer rows) {// TODO Auto-generated method stubTbItemParamExample example = new TbItemParamExample();PageHelper.startPage(page, rows);List<TbItemParam> list = itemParamMapper.selectByExampleWithBLOBs(example);PageInfo<TbItemParam> info = new PageInfo<>(list);EasyUIResult uiResult = new EasyUIResult();uiResult.setTotal(info.getTotal());uiResult.setRows(list);return uiResult;}