java.lang.ClassCastException: java.util.ArrayList cannot be cast to com.github.pagehelper.Page

出现这个错误,首先看配置mybatis-config.xml中的






这个有没有配置。注意:在com.github.pagehelper.PageHelper这个包为4.0以后的就不用写下面的数据库类型了,会自动识别。

然后看类里面的:
PageHelper.startPage(pageNum, pageSize);
Page page=(Page)deviceMapper.selectByExample(null);
return new PageResult(page.getTotal(),page.getResult());
PageHelper.startPage这个与下面语句是否为查询有关,这个是网上说的,具体是怎样我也不清楚,反正我的都可以


基本就是这两条。

你可能感兴趣的:(java.lang.ClassCastException: java.util.ArrayList cannot be cast to com.github.pagehelper.Page)