配置文件
if (StringUtils.isNotBlank(key)) {
criteria.andLike("channelName", "%" + key + "%");
}
PageHelper.startPage(page, rows);
List<FrontChannel> frontChannels = this.channelMapper.selectByExample(example);
需要添加以下配置:
pagehelper:
helperDialect: oracle
reasonable: true
supportMethodsArguments: true
params: count=countSql
pagehelper:
helperDialect: mysql
你这个是达梦数据库?不是常规数据库可能无法识别,可以试试指定为mysql试试,这个分页插件只不过是在原有的sql后面增加limit因为问题不大