溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么在Mybatis中使用pagehelper分頁插件

發(fā)布時間:2021-03-20 17:15:43 來源:億速云 閱讀:186 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關(guān)怎么在Mybatis中使用pagehelper分頁插件,小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

1.添加maven依賴

 <dependency>
  <groupId>com.github.pagehelper</groupId>
  <artifactId>pagehelper</artifactId>
  <version>5.0.0</version>
 </dependency>

2.在 Spring 配置文件中配置攔截器插件,也可以在mybatis的xml里面配置,但是兩種配置不能同時出現(xiàn),否則容易出現(xiàn)com.github.pagehelper.PageInterceptor插件出現(xiàn)空指針問題

在spring.xml中定義:

<!--配置SqlSessionFactory對象 -->
  <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
    <property name="dataSource" ref="dataSource" />
    <property name="configLocation" value="classpath:mybatis-config.xml" />
    <property name="typeAliasesPackage" value="com.aoChine.model.entity" />
    <property name="mapperLocations" value="classpath:mapper/*.xml" />

    <!-- 配置mybatis分頁插件PageHelper -->
    <property name="plugins">
      <array>
        <bean class="com.github.pagehelper.PageInterceptor">
          <property name="properties">
            <!-- 什么都不配,使用默認的配置 -->
            <value></value>
          </property>
        </bean>
      </array>
    </property>
  </bean>

在mybatis-config.xml中定義

<plugins>
    <!-- com.github.pagehelper為PageHelper類所在包名 -->
    <plugin interceptor="com.github.pagehelper.PageInterceptor">
      <!-- 使用MySQL方言的分頁 -->
      <property name="helperDialect" value="sqlserver"/><!--如果使用mysql,這里value為mysql-->
      <property name="pageSizeZero" value="true"/>
    </plugin>
 </plugins>

3.使用

a)寫正常查詢語句的接口

怎么在Mybatis中使用pagehelper分頁插件

接口:

怎么在Mybatis中使用pagehelper分頁插件

b)在service層調(diào)用接口,實現(xiàn)分頁。

怎么在Mybatis中使用pagehelper分頁插件

以上就是怎么在Mybatis中使用pagehelper分頁插件,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降摹OM隳芡ㄟ^這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI