功能要求:
我们在使用Mybatis分页查询数据列表时,在用户的一个请求中常常需要同时返回当前页的列表数据以及满足条件的数据总条数用于分页。
实现方案
1)执行两次SQL,一次查列表,一次查总数
这种方法最简单,也最容易实现。
2)分页插件PageHelper
另一种常用的方式就是使用Mybatis提供的PageHelper插件。实际上PageHelper插件的原理同1)一样,就是执行两次SQL查询。
3)通过特殊的Mybatis语法,只执行一次SQL查询。这个功能要求connectionUrl参数包含allowMultiQueries=true,对于如zebra等集成工具,就算配了allowMultiQueries=true,也不一定起作用。
代码如下:文章来源:https://www.toymoban.com/news/detail-634445.html
<select id="queryListAppendTotal"
parameterType="com.domain.OrderExample"
resultMap="BaseResultMap, recordCounts">
select
SQL_CALC_FOUND_ROWS
<include refid="Base_Column_List"/>
from order_example
<if test="_parameter != null">
<include refid="Example_Where_Clause"/>
</if>
<if test="orderByClause != null">
order by ${orderByClause}
</if>
<if test="limit != null">
<if test="offSet != null">
limit ${offSet}, ${limit}
</if>
<if test="offSet == null">
limit ${limit}
</if>
</if>
;SELECT found_rows() AS recordCounts;
</select>
<resultMap id="BaseResultMap" type="com.domain.OrderExample">
<id column="id" jdbcType="BIGINT" property="id"/>
<result column="order_id" jdbcType="VARCHAR" property="orderId"/>
<result column="create_time" jdbcType="TIMESTAMP" property="createTime"/>
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime"/>
</resultMap>
<resultMap id="recordCounts" type="java.lang.Long">
<result column="recordCounts" jdbcType="BIGINT"/>
</resultMap>
注意:在使用时须要在配置文件中,设置容许sql进行多语句执行:allowMultiQueries=true,在sql的url上加上这个配置就能够了文章来源地址https://www.toymoban.com/news/detail-634445.html
到了这里,关于Mybatis分页查询同时返回总数和数据的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!