zoukankan      html  css  js  c++  java
  • Mybatis分页插件

    1.在pom.xml中添加依赖

    <!--分页技术-->
    <dependency>
        <groupId>com.github.pagehelper</groupId>
        <artifactId>pagehelper</artifactId>
        <version>4.1.4</version>
    </dependency>

    2.在mybatis-Config.xml中添加分页插件配置

    <!--分页插件配置-->
    <plugins>
        <plugin interceptor="com.github.pagehelper.PageHelper">
            <property name="dialect" value="mysql"/>
            <property name="offsetAsPageNum" value="false"/>
            <property name="rowBoundsWithCount" value="false"/>
            <property name="pageSizeZero" value="true"/>
            <property name="reasonable" value="false"/>
            <property name="supportMethodsArguments" value="false"/>
            <property name="returnPageInfo" value="none"/>
        </plugin>
    </plugins>

    3.service在调用dao层的方法之前加上

    PageHelper.startPage(pageNum,1);//表示这一页显示一条记录

    -----------------------------------------------------------------------------------------

    与上面无关提示:

    在dao层如果方法中有多个参数-务必使用注解@Param ------例如:

    void updateStatusById(@Param("status") int status,@Param("realCheckId") String realCheckId);
  • 相关阅读:
    如何快速取得股票交易历史数据
    ArcSDE性能优化系列之ArcSDE参数篇
    2020年8月29日
    2020年8月31日
    9.2
    2020年8月25日
    2020年8月30日
    2020年8月27日
    2020年8月26日
    2020年8月28日
  • 原文地址:https://www.cnblogs.com/pigdata/p/10305620.html
Copyright © 2011-2022 走看看