本文主要是介绍超过总数还会有数据,pagehelper分页合理化,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
mybatis配置文件,**-source.xml中的pagehelper插件配置
<property name="plugins">
<array>
<bean class="com.github.pagehelper.PageInterceptor">
<property name="properties">
<value>
helperDialect=mysql
reasonable=false(为true时分页合理化,则会出现pageNum为很大时,已经超过总数还会有数据)
supportMethodsArguments=false
params=count=countSql
autoRuntimeDialect=true
</value>
</property>
</bean>
</array>
</property>
这篇关于超过总数还会有数据,pagehelper分页合理化的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!