關於pagehelper-spring-boot-starter排序的一個小測試

關於pagehelper-spring-boot-starter排序的一個小測試mysql

 

1. 依賴和配置信息git

<dependency>
    <groupId>com.github.pagehelper</groupId>
    <artifactId>pagehelper-spring-boot-starter</artifactId>
    <version>1.2.5</version>
</dependency>
github

pagehelper:
   
helper-dialect: mysql
   
reasonable: true
   
support-methods-arguments: true
   
params: count=countSql
spring

 

2.表中有兩個時間字段 create_time、update_timesql

3.在xml的select語句中設置order by update_time desc

4. 程序中查詢語句直接輸出結果mybatis

 

5.程序的查詢語句以前添加 PageHelper.orderBy("create_time asc");輸出查詢結果

6.最終測試結果,是按照create_time asc來進行排序的。spring-boot

備註:pagehelper-spring-boot-starter 依賴mybatis-spring-boot-starter和pagehelper了,不須要再額外添加依賴測試

pagehelper-spring-boot-starter gitbub地址 https://github.com/pagehelper/pagehelper-spring-bootspa

相關文章
相關標籤/搜索