快速测试mybatis的sql
当我们写完sql后,我们需要测试下sql是否符合预期,在填入各种参数后能否正常工作,尤其是对于复杂的sql。
一般我们测试可能是如下的代码:
由于需要启动spring,当项目较大的时候启动速度很慢,有些项目的启动时间超过30秒。导致测试sql速度很慢,尤其项目上不允许引入热部署jrebel,改下sql重新再测试等很花时间。
如果只是单独测试sql是否正确,没必要启动spring容器,mybatis可以直接定义配置文件进行启动,测试代码如下
配置文件
这样我们可以直接测试mybatis的sql而不需要启动spring
速度非常快 如下:
基本上1,2秒钟就跑完了。相比启动spring的测试效率提升很高。
生成testcase支持PageHelper分页插件
修改setUp方法加入interceptor即可
SqlSessionFactory builder = new SqlSessionFactoryBuilder().build(UserMapperTest.class.getClassLoader().getResourceAsStream("mybatisTestConfiguration/UserMapperTestConfiguration.xml"));
//you can use builder.openSession(false) to not commit to database
PageInterceptor interceptor = new PageInterceptor();
builder.getConfiguration().addInterceptor(interceptor);
mapper = builder.getConfiguration().getMapper(UserMapper.class, builder.openSession(true));
生成testcase支持mybatisplus
在生成的testcase中有一个setUp方法,将SqlSessionFactoryBuilder
改成MybatisSqlSessionFactoryBuilder
即可测试mybatisplus自带的一些方法
mybatisplus添加分页插件和乐观锁插件
在test类可以修改setUpMybatisDatabase
如下
@org.junit.BeforeClass
public static void setUpMybatisDatabase() {
SqlSessionFactory builder = new MybatisSqlSessionFactoryBuilder().build(SymphonyClientMapperTest.class.getClassLoader().
getResourceAsStream("mybatisTestConfiguration/SymphonyClientMapperTestConfiguration.xml"));
final MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
interceptor.addInnerInterceptor(new OptimisticLockerInnerInterceptor());
interceptor.addInnerInterceptor(new PaginationInnerInterceptor());
builder.getConfiguration().addInterceptor(interceptor);
//you can use builder.openSession(false) to not commit to database
mapper = builder.getConfiguration().getMapper(SymphonyClientMapper.class, builder.openSession(true));
}
这样就可以快速测试mybatis的sql了.
也可以试试我写的Intellij下的MybatisCodeHelperPro
插件,链接:
❝https://plugins.jetbrains.com/plugin/9837-mybatiscodehelperpro
❞
插件可以自动生成测试的java类和配置文件,不需要手动去配置。
来源:juejin.cn/post/7271942371638214708
推荐全新学习项目
全新基于springboot+vue+vant的前后端分离的微商城项目,包括手机端微商城项目和后台管理系统,整个电商购物流程已经能流畅支持,涵盖商品浏览、搜索、商品评论、商品规格选择、加入购物车、立即购买、下单、订单支付、后台发货、退货等。功能强大,主流技术栈,非常值得学习。
项目包含2个版本:
基于springboot的单体版本
基于spring cloud aliabab的微服务版本
线上演示:https://www.markerhub.com/vueshop
从文档到视频、接口调试、学习看板等方面,让项目学习更加容易,内容更加沉淀。全套视频教程约44小时,共260期,讲解非常详细细腻。下面详细为大家介绍:
架构与业务
使用主流的技术架构,真正手把手教你从0到1如何搭建项目手脚架、项目架构分析、建表逻辑、业务分析、实现等。
单体版本:springboot 2.7、mybatis plus、rabbitmq、elasticsearch、redis
微服务版本:spring cloud alibaba 2021.0.5.0,nacos、seata、openFeign、sentinel
前端:vue 3.2、element plus、vant ui
更多详情请查看:
手把手教学,从0开发前后端微商城项目,主流Java技术一网打尽!