使用LambdaQueryWrapper 报错MybatisPlusException: can not find lambda cache
背景:使用了MybatisPlus,在对service层进行单元测试时,为保证数据与应用隔离,采用Mock的方式.分析:排错时发现LambdaUtils.getColumnMap(aClass)中无数据;原因:首先是MybatisPlus的bug,经过分析后排除,再次考虑TableInfo的初始化过程被中止,或者被Mock替换了,更有可能是压根就没有触发(没有具体研究过测试框架的,无法给出结果,但
背景:使用了MybatisPlus,在对service层进行单元测试时,为保证数据与应用隔离,采用Mock的方式.
分析:排错时发现LambdaUtils.getColumnMap(aClass)中无数据;
原因:首先是MybatisPlus的bug,经过分析后排除,再次考虑TableInfo的初始化过程被中止,或者被Mock替换了,更有可能是压根就没有触发(没有具体研究过测试框架的,无法给出结果,但是不影响解决问题)
查询到另一篇博客的原因:
项目中使用JUnit & Mocktio进行单元测试,如果代码中使用LambdaQueryWrapper进行条件构造,在DO类中有类似@TableId、@TableLogic等注解,在执行单元测试时会报错 MybatisPlusException: can not find lambda cache for this property [] of entity []
问题:Mockito对Mapper进行mock后,相关的TableInfo信息无法初始化,导致Wrapper组装条件时
报:com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: can not find lambda cache for this property [****] of entity [Entity]
方案:解决的方案是手动触发相关缓存信息收集(或许还有更优雅的方案)
方式:在执行目标方法之前添加
TableInfoHelper.initTableInfo(new MapperBuilderAssistant(new MybatisConfiguration(), ""),Xxx.class);
假如一个test类里面使用到的方法多的话,可以使用before注解让这行代码在测试类中所有方法执行之前就添加
在junit 5.x中,@Before主键被@BeforeEach所替代。
@BeforeEach
public void initTable() {
TableInfoHelper.initTableInfo(new MapperBuilderAssistant(new MybatisConfiguration(), ""), Xxx.class);
}
引用:https://blog.csdn.net/horncui/article/details/114547729
引用:Mockito MybatisPlus baseMapper:can not find lambda cache for this property-CSDN论坛
更多推荐
所有评论(0)