标签:tis orderby asc com github int boot spring 实现
用mybatis,那么分页必不可少,基本都是用PageHelper这个分页插件,好用方便;
<!-- 3、集成 mybatis pagehelper--> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.2.10</version> </dependency>
pagehelper.helper-dialect=mysql
int startPage= 2; int pageSize= 2; PageHelper.startPage(startPage, pageSize); PageHelper.orderBy("id ASC"); List<User> allUser = userservice.getAll(); return allUser ;
完毕,是不是很简单!
小白的springboot之路(十五)、mybatis的PageHelper分页插件使用
标签:tis orderby asc com github int boot spring 实现
原文地址:https://www.cnblogs.com/yanghj/p/12336863.html