本篇文章为你整理了springboot中使用mybatisplus自带插件实现分页()的详细内容,包含有 springboot中使用mybatisplus自带插件实现分页,希望能帮助你了解 springboot中使用mybatisplus自带插件实现分页。
* 新的分页插件,一缓和二缓遵循mybatis的规则,需要设置 MybatisConfiguration#useDeprecatedExecutor = false 避免缓存出现问题(该属性会在旧插件移除后一同移除)
@Bean
public MybatisPlusInterceptor mybatisPlusInterceptor() {
MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.H2));
return interceptor;
@Bean
public ConfigurationCustomizer configurationCustomizer() {
return configuration - configuration.setUseDeprecatedExecutor(false);
3.测试分页
@Test
void testPage(){
//1、创建page对象
//传入两个参数:当前页 和 每页显示的记录数
Page User page = new Page (1,3);
//调用mp分页查询的方法,null为没有条件查询
userMapper.selectPage(page,null);
QueryWrapper 实体类 wrapper = new QueryWrapper ();
Map String, Object pageMap = new HashMap ();
pageMap.put("key", value);
wrapper.eq("name", value);
wrapper.allEq(pageMap);
bbooksMapper.selectPage(pageinfo, wrapper);
//通过page对象获取分页数据
System.out.println("当前页码:" + page.getCurrent());//获取当前页
System.out.println("数据的list集合:" + page.getRecords());//每页数据的list集合
System.out.println("每页显示的记录数:" + page.getSize());//每页显示的记录数
System.out.println("总记录数:" + page.getTotal());//总记录数
System.out.println("总页数:" + page.getPages());//总页数
System.out.println("是否有下一页:" + page.hasNext());//是否有下一页
System.out.println("是否有上一页:" + page.hasPrevious());//是否有上一页
图片:
以上就是springboot中使用mybatisplus自带插件实现分页()的详细内容,想要了解更多 springboot中使用mybatisplus自带插件实现分页的内容,请持续关注盛行IT软件开发工作室。
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。