文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

SpringBoot MP简单的分页查询测试怎么实现

2023-07-05 20:08

关注

这篇文章主要讲解了“SpringBoot MP简单的分页查询测试怎么实现”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“SpringBoot MP简单的分页查询测试怎么实现”吧!

导入最新的mp依赖是第一步不然太低的版本什么都做不了,3,1以下的好像连分页插件都没有加进去,所以我们用最新的3.5的,保证啥都有:

        <dependency>            <groupId>com.baomidou</groupId>            <artifactId>mybatis-plus-boot-starter</artifactId>            <version>3.5.2</version>        </dependency>

这里我们需要认识两个插件:mp的核心插件MybatisPlusInterceptor与自动分页插件PaginationInnerInterceptor。

MybatisPlusInterceptor的源码(去掉中间的处理代码):

public class MybatisPlusInterceptor implements Interceptor {    private List<InnerInterceptor> interceptors = new ArrayList();    public MybatisPlusInterceptor() {}    public Object intercept(Invocation invocation) throws Throwable {}    public Object plugin(Object target) {}    public void addInnerInterceptor(InnerInterceptor innerInterceptor) {}    public List<InnerInterceptor> getInterceptors() {}    public void setProperties(Properties properties) {}    public void setInterceptors(final List<InnerInterceptor> interceptors) {}}

我们可以发现它有一个私有的属性列表 List<InnerInterceptor> 而这个链表中的元素类型是InnerInterceptor。

InnerInterceptor源码:

public interface InnerInterceptor {    default boolean willDoQuery(Executor executor, MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) throws SQLException {        return true;    }    default void beforeQuery(Executor executor, MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) throws SQLException {    }    default boolean willDoUpdate(Executor executor, MappedStatement ms, Object parameter) throws SQLException {        return true;    }    default void beforeUpdate(Executor executor, MappedStatement ms, Object parameter) throws SQLException {    }    default void beforePrepare(StatementHandler sh, Connection connection, Integer transactionTimeout) {    }    default void beforeGetBoundSql(StatementHandler sh) {    }    default void setProperties(Properties properties) {    }}

不难发现这个接口的内容大致就是设置默认的属性,从代码的意思上就是提供默认的数据库操作执行时期前后执行的一些逻辑,谁实现它的方法会得到新的功能?

再看看PaginationInnerInterceptor插件的源码:

public class PaginationInnerInterceptor implements InnerInterceptor {    protected static final List<SelectItem> COUNT_SELECT_ITEM = Collections.singletonList((new SelectExpressionItem((new Column()).withColumnName("COUNT(*)"))).withAlias(new Alias("total")));    protected static final Map<String, MappedStatement> countMsCache = new ConcurrentHashMap();    protected final Log logger = LogFactory.getLog(this.getClass());    protected boolean overflow;    protected Long maxLimit;    private DbType dbType;    private IDialect dialect;    protected boolean optimizeJoin = true;    public PaginationInnerInterceptor(DbType dbType) {        this.dbType = dbType;    }    public PaginationInnerInterceptor(IDialect dialect) {        this.dialect = dialect;    }    public boolean willDoQuery(Executor executor, MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) throws SQLException {        IPage<?> page = (IPage)ParameterUtils.findPage(parameter).orElse((Object)null);        if (page != null && page.getSize() >= 0L && page.searchCount()) {            MappedStatement countMs = this.buildCountMappedStatement(ms, page.countId());            BoundSql countSql;            if (countMs != null) {                countSql = countMs.getBoundSql(parameter);            } else {                countMs = this.buildAutoCountMappedStatement(ms);                String countSqlStr = this.autoCountSql(page, boundSql.getSql());                MPBoundSql mpBoundSql = PluginUtils.mpBoundSql(boundSql);                countSql = new BoundSql(countMs.getConfiguration(), countSqlStr, mpBoundSql.parameterMappings(), parameter);                PluginUtils.setAdditionalParameter(countSql, mpBoundSql.additionalParameters());            }            CacheKey cacheKey = executor.createCacheKey(countMs, parameter, rowBounds, countSql);            List<Object> result = executor.query(countMs, parameter, rowBounds, resultHandler, cacheKey, countSql);            long total = 0L;            if (CollectionUtils.isNotEmpty(result)) {                Object o = result.get(0);                if (o != null) {                    total = Long.parseLong(o.toString());                }            }            page.setTotal(total);            return this.continuePage(page);        } else {            return true;        }    }    public void beforeQuery(Executor executor, MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) throws SQLException {...........省略之后全部的内容........}

我们不难发现它实现了来自于InnerInterceptor的方法,这里面的源码有时间需要好好处处逻辑。

我们知道了分页插件和核心插件的关系,也就是我们可以将分页插件添加入核心插件内部的插件链表中去,从而实现多功能插件的使用。

配置mp插件,并将插件交由spring管理(我们用的是springboot进行测试所以不需要使用xml文件):

import com.baomidou.mybatisplus.annotation.DbType;import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;@Configurationpublic class MpConfig {        @Bean    public MybatisPlusInterceptor mybatisPlusInterceptor() {                MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();                PaginationInnerInterceptor pagInterceptor = new PaginationInnerInterceptor();                pagInterceptor.setOverflow(false);                pagInterceptor.setMaxLimit(500L);                pagInterceptor.setDbType(DbType.MYSQL);                interceptor.addInnerInterceptor(pagInterceptor);        return interceptor;    }}

配置完之后写一个Mapper接口:

import com.baomidou.mybatisplus.core.mapper.BaseMapper;import com.hlc.mp.entity.Product;import org.apache.ibatis.annotations.Mapper;@Mapperpublic interface ProductMapper extends BaseMapper<Product> {}

为接口创建一个服务类(一定按照mp编码的风格来):

import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;import com.baomidou.mybatisplus.extension.plugins.pagination.Page;import com.baomidou.mybatisplus.extension.service.IService;import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;import com.hlc.mp.entity.Product;import com.hlc.mp.mapper.ProductMapper;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Service;import java.util.List;@Service(value = "ProductService")public class ProductServiceImpl extends ServiceImpl<ProductMapper, Product>        implements IService<Product> {    @Autowired    ProductMapper productMapper;        public Page<Product> page(Long current) {                Page<Product> productPage = new Page<>(current, 1);                QueryWrapper<Product> queryWrapper = new QueryWrapper<>();        queryWrapper.eq("status", 0);        productMapper.selectPage(productPage, queryWrapper);        return productPage;    }}

到这里我们可以看到分页的具体方法就是,先创建一个分页对象,规定页码和每一页的数据量的大小,其次确定查询操作的范围,并使用BaseMapper<T>给予我们的查询分页方法selectPage(E page,Wapper<T> queryWapper)进行查询分页的操作。

测试类:

    @Test    public void testPage(){        IPage<Product> productIPage = productService.page(2L);        productIPage.getRecords().forEach(System.out::println);        System.out.println("当前页码"+productIPage.getCurrent());        System.out.println("每页显示数量"+productIPage.getSize());        System.out.println("总页数"+productIPage.getPages());        System.out.println("数据总量"+productIPage.getTotal());    }

运行查看分页结果:

SpringBoot MP简单的分页查询测试怎么实现

我们可以发现都正常的按照我们传入的页码去查询对应的页数据了,因为我设置的每页只展示一条数据,所以ID如果对应页码就说明分页成功。

感谢各位的阅读,以上就是“SpringBoot MP简单的分页查询测试怎么实现”的内容了,经过本文的学习后,相信大家对SpringBoot MP简单的分页查询测试怎么实现这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯