跳至主要內容

Mybatis PageHelper 使用

Steven小于 1 分钟java

官网:

参考:

配置

三种配置方式

  • 在 mybatis-config.xml 中配置
  • 在 spring 的配置文件中配置
  • 在配置类中配置
XML 方式
<configuration>
  <plugins>
    <plugin interceptor="com.github.pagehelper.PageInterceptor">
      <property name="pageSizeZero" value="true" />
    </plugin>
  </plugins>
</configuration>

使用

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;
}