分页PageHelper是如何实现分页信息
分页PageHelper是如何实现分页信息 PageHelper.startPage(0,10); List<TAccount> tAccounts = tAccountMapper.selectAccountList(); PageInfo pageInfo = new PageInfo<>(tAccounts);第一步:PageHelper.startPage(0,10);设置page信息到ThreadLocal中/**