pagehelper / Mybatis-PageHelper

Mybatis通用分页插件
https://mybatis.io
MIT License
12.22k stars 3.13k forks source link

SpringBoot 在xml中有limit的时候会自动增加一个limit #78

Closed devlopeLi closed 7 years ago

devlopeLi commented 7 years ago
com.github.pagehelper pagehelper 4.1.6 org.mybatis.spring.boot mybatis-spring-boot-starter 1.3.0

select * from xxx where xxx = #{xxx,jdbcType=INTEGER} AND xxx > -2 ORDER BY xxx DESC limit 1

会在sql 执行的时候在最后面增加limit,

abel533 commented 7 years ago

不要对已经分页的SQL使用分页插件。

SERE026 commented 6 years ago

这个有点鸡肋,只要参数中带有和分页参数中的可以相同,就会自动触发分页查询

abel533 commented 6 years ago

@SERE026 升级到最新版本。。低版本有个bug。。最新版本需要配置才会自动触发分页查询。