首先,先去掉 mybatis中的分页配置。。。确定是分页导致的问题
几个点 (1)配置问题 。pageHelper5.0版本后
? ? ? ? ? ? ? ? 如图,不要用注释掉的
用 PageInterceptor和 reasonable 参数
<plugins>
<!-- <plugin interceptor="com.github.pagehelper.PageHelper">-->
<plugin interceptor="com.github.pagehelper.PageInterceptor">
<!-- <property name="dialect" value="mysql"/>-->
<property name="reasonable" value="true"/>
</plugin>
</plugins>
(2)查询时 ,中间不能有其他 查询语句,,,要紧挨着,否则查询失效
Student{id=1, name='张三', age=23}
Student{id=2, name='李四', age=24}
Process finished with exit code 0
???
Student{id=1, name='张三', age=23}
Student{id=2, name='李四', age=24}
Process finished with exit code 0
|