springboot分页插件properties配置
时间: 2023-05-11 14:05:17 浏览: 146
springboot_properties配置项
可以在application.properties文件中添加以下配置:
# 分页插件配置
# 开启分页支持
mybatis.pagehelper.helperDialect=mysql
mybatis.pagehelper.reasonable=true
mybatis.pagehelper.supportMethodsArguments=true
mybatis.pagehelper.params=count=countSql
其中,helperDialect指定数据库类型,reasonable表示是否启用合理化查询,supportMethodsArguments表示是否支持方法参数,params指定count和countSql的参数名。
阅读全文