标签:bsp 引用 lis inf mic import 技术 src pre
分页一般场景用于查询所有数据
包引用
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.PageRequest;
例 Page<info> xxxxinfoList = xxxrepository.findAll(Pageable pageable);
在请求时用
PageRequest作为入参 最基本入参为
PageRequest pageRequest = new PageRequest(0,2);
标签:bsp 引用 lis inf mic import 技术 src pre
原文地址:https://www.cnblogs.com/yushizhang/p/10765761.html