关于 MyBatis-Plus 分页查询的探讨 → count 都为 0 了,为什么还要查询记录?

关于 MyBatis-Plus 分页查询的探讨 → count 都为 0 了,为什么还要查询记录?

开心一刻

  记得上初中,中午午休的时候,我和哥们躲在厕所里吸烟

  听见外面有人进来,哥们猛吸一口,就把烟甩了

  进来的是教导主任,问:你们干嘛呢?

  哥们鼻孔里一边冒着白烟一边说:我在生气

环境搭建

  依赖引入

   MyBatis-Plus 版本: 3.1.0 

   Spring Boot 版本: 2.1.0.RELEASE 

  因为是基于 Spring Boot ,所以 MyBatis-Plus 的依赖如下

  完整 pom.xml 如下

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.qsl</groupId>
    <artifactId>mybatis-plus-demo</artifactId>
    <version>1.0-SNAPSHOT</version>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.0.RELEASE</version>
    </parent>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.1.0</version>
        </dependency>
        <!--mysql-->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
    </dependencies>
</project>
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » 关于 MyBatis-Plus 分页查询的探讨 → count 都为 0 了,为什么还要查询记录?