mybatis逆向工程带条件查询用PageHelper分页插件出错

Posted maplefighting

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis逆向工程带条件查询用PageHelper分页插件出错相关的知识,希望对你有一定的参考价值。

问题:

There is no getter for property named ‘__frch_criterion_1‘ in ‘class com.××.××.TbContentExample‘。可是我并没有定义这个变量。

代码如下:

技术分享图片
//执行查询
TbContentExample example = new TbContentExample();
Criteria criteria = example.createCriteria();
criteria.andCategoryIdEqualTo(((long)categoryId));
        
//分页处理
PageHelper.startPage(1, 10);
List<TbContent> list = contentMapper.selectByExampleWithBLOBs(example);
View Code

分析:

把条件注释掉或者分页注释掉正常使用。个人猜测可能是分页插件和逆向工程不兼容。

解决:

其实是还没解决,最后自己写了mapper和xml查询。记录一下,md找了一下午原因

以上是关于mybatis逆向工程带条件查询用PageHelper分页插件出错的主要内容,如果未能解决你的问题,请参考以下文章

Mybatis-Plus使用PageHelp无效

使用mybatis框架实现带条件查询-多条件

Mybatis-Plus分页查询带条件的核心笔记

Mybatis-Plus分页查询带条件的核心笔记

mybatis的xml带where固定条件查询

mybatis的xml带where固定条件查询