码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-03-08 18:08:41      阅读:655      评论:0      收藏:0      [点我收藏+]

标签:style   closed   display   creat   逆向   pos   blog   start   name   

问题:

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分页插件出错

标签:style   closed   display   creat   逆向   pos   blog   start   name   

原文地址:https://www.cnblogs.com/maplefighting/p/8529864.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!