首先我需要匯入架包
1.pagehelper
"com.github.pagehelper.pagehelper"
>
"helperdialect" value=
"mysql"
/>
"offsetaspagenum" value=
"false"
/>
"rowboundswithcount" value=
"false"
/>
<
!-- 設定為true時,會將rowbounds第乙個引數offset當成pagenum頁碼使用 --
>
"pagesizezero" value=
"true"
/>
<
!-- 設定為true時,如果pagesize=
0或者rowbounds.limit =
0就會查詢出全部的結果 --
>
"reasonable" value=
"false"
/>
"supportmethodsarguments" value=
"false"
/>
"returnpageinfo" value=
"none"
/>
<
/plugin>
<
/plugins>
如果你是在mybatis中配置分頁『
"sqlsessionfactory"
class
="org.mybatis.spring.sqlsessionfactorybean"
>
<
!-- 引用資料來源 前面的name是固定的,後面的引用可以改變 --
>
"datasource" ref=
"datasource"
>
<
/property>
<
!--引用mybatis配置檔案裡的配置 --
>
"configlocation" value=
"classpath:config.xml"
>
<
/property>
<
!-- 傳入pagehelper的外掛程式 --
>
"plugins"
>
傳入外掛程式的物件="com.github.pagehelper.pageinterceptor"
>
"properties"
>
"helperdialect"
>mysql<
/prop>
"reasonable"
>
true
<
/prop>
<
/props>
<
/property>
<
/bean>
<
/array>
<
/property>
<
/bean>
如有不足之處,還請不吝賜教。 Mybatis 關於分頁查詢外掛程式的使用
mybatis的乙個分頁外掛程式,即乙個負責分頁的jar包 這裡需要注意的是5.x和4.x的配置是不同的 在4.x及以下版本中,mybatis config.xml中的配置為 interceptor com.github.pagehelper.pagehelper name dialect valu...
mybatis 分頁外掛程式的使用
mybatis 分頁外掛程式的使用 1 匯入依賴 com.github.pagehelpergroupid pagehelperartifactid 5.1.11version dependency 2 在 mybatis 配置檔案中配置外掛程式 interceptor com.github.pag...
關於Mybatis的分頁外掛程式pageHelper
1.pagehelper.startpage page,size com.github.pagehelper 查詢後可用new pageinfo 來接 為實體類的list 若只需要list中某個屬性值,則可以將其抽出乙個新的list 物件.stream map get x collect colle...