springboot 使用 PageHelper 进行分页报错 :无法自动获取数据库类型,请通过 helperDialect 参数指定!
配置文件
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
以上是 springboot 使用 PageHelper 进行分页报错 :无法自动获取数据库类型,请通过 helperDialect 参数指定! 的全部内容, 来源链接: utcz.com/a/44164.html