分页插件(Mybatis-Plus)
分页配置
在MybatisPlusConfig
自定义类中开启分页插件
1 |
|
使用分页
1 |
|
执行结果:
1 | ==> Preparing: SELECT id,name,password,create_time,update_time,version,deleted FROM user WHERE deleted=0 LIMIT ? |
在MybatisPlusConfig
自定义类中开启分页插件
1 |
|
1 |
|
执行结果:
1 | ==> Preparing: SELECT id,name,password,create_time,update_time,version,deleted FROM user WHERE deleted=0 LIMIT ? |