前言
关于分页,一般来说rowBounds 这种假分页都上不了台面,我们往往都选哟真分页,那么还不想搞得很麻烦,Mybatis的分页插件就为后端程序员解决了这个问题
例子
首先需要导入依赖, 没错pagehelper
代码语言:javascript复制 <dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>5.2.0</version>
</dependency>
看看怎么用,首先我们不要条件,直接分
当然了我喜欢自己事先写一个page的实体类