pagehelper分页查询数据重复问题

1.非order by原因

2.分页成功,但是第一页和第二页一样

3.前端用的miniui

4.最后一页总是查满

配置文件

pagehelper:
  helper-dialect: oracle
  reasonable: true
  support-methods-arguments: true
  params: count=countSql

经排查,reasonable: true之后,就是说开启了分页合理化后,pageNum<=0时,都按1处理,因此造成第一页和第二页相同,最后一页查出多个的情况

你可能感兴趣的:(oracle,java)