關於pagehelper-spring-boot-starter排序的一個小測試
阿新 • • 發佈:2018-12-04
關於pagehelper-spring-boot-starter排序的一個小測試
1. 依賴和配置資訊
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.2.5</version>
</dependency >
pagehelper:
helper-dialect: mysql
reasonable: true
support-methods-arguments: true
params: count=countSql
2.表中有兩個時間欄位 create_time、update_time
3.在xml的select語句中設定order by update_time desc
4. 程式中查詢語句直接輸出結果
5.程式的查詢語句之前新增 PageHelper.orderBy("create_time asc");輸出查詢結果
6.最終測試結果,是按照create_time asc來進行排序的。
備註:pagehelper-spring-boot-starter 依賴mybatis-spring-boot-starter和pagehelper了,不需要再額外新增依賴
pagehelper-spring-boot-starter gitbub地址 https://github.com/pagehelper/pagehelper-spring-boot