Mybatis PageHelper 使用
小于 1 分钟
官网:
参考:
配置
三种配置方式
- 在 mybatis-config.xml 中配置
- 在 spring 的配置文件中配置
- 在配置类中配置
XML 方式
<configuration>
<plugins>
<plugin interceptor="com.github.pagehelper.PageInterceptor">
<property name="pageSizeZero" value="true" />
</plugin>
</plugins>
</configuration>
配置类方式
@Configuration
public class PageConfig {
@Resource
private List<SqlSessionFactory> sqlSessionFactoryList;
@PostConstruct
public void init() {
PageInterceptor pageInterceptor = new PageInterceptor();
Properties properties = new Properties();
properties.put("pageSizeZero", "true");
pageInterceptor.setProperties(properties);
for (SqlSessionFactory sqlSessionFactory : sqlSessionFactoryList) {
sqlSessionFactory.getConfiguration().addInterceptor(pageInterceptor);
}
}
}
使用
public TableResult<Author> listByPageViaPageHelper(AuthorDTO dto) {
PageHelper.startPage(dto.getPageNow(), dto.getPageSize());
TableResult<Autho> tableResult = new TableResult<>();
List<Author> authors = authorMapper.selectViatPageHelper(dto);
PageInfo<Author> authorPageInfo = new PageInfo<>(authors);
tableResult.setRows(authorPageInfo.getList());
tableResult.setTotalCount(authorPageInfo.getTotal());
return tableResult;
}