问题:
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);
分析:
把条件注释掉或者分页注释掉正常使用。个人猜测可能是分页插件和逆向工程不兼容。
解决:
其实是还没解决,最后自己写了mapper和xml查询。记录一下,md找了一下午原因
原文地址:https://www.cnblogs.com/maplefighting/p/8529864.html
时间: 2024-10-03 20:56:53