我查出来的数据如果不进行排序PageHelper还能进行分页的操作吗
分页跟排序没啥关系啊,分页只是从查询的结果中取规定的几条数据,只要你查询结果的顺序不变就不影响
# PageHelper分页插件
# 使用的数据库,如果是mysql,这里替换成mysql
pagehelper.helperDialect= oracle
# 当该参数设置为 true 时,pageNum<=0 时会查询第一页, pageNum>pages(超过总数时),会查询最后一页
pagehelper.reasonable= true
# 支持通过 Mapper 接口参数来传递分页参数
pagehelper.supportMethodsArguments= true