功能要求:
我们在使用Mybatis分页查询数据列表时,在用户的一个请求中常常需要同时返回当前页的列表数据以及满足条件的数据总条数用于分页。
实现方案
1)执行两次SQL,一次查列表,一次查总数
这种方法最简单,也最容易实现。
2)分页插件PageHelper
另一种常用的方式就是使用Mybatis提供的PageHelper插件。实际上PageHelper插件的原理同1)一样,就是执行两次SQL查询。
3)通过特殊的Mybatis语法,只执行一次SQL查询。这个功能要求connectionUrl参数包含allowMultiQueries=true,对于如zebra等集成工具,就算配了allowMultiQueries=true,也不一定起作用。
代码如下:
<select id="queryListAppendTotal"parameterType="com.domain.OrderExample"resultMap="BaseResultMap, recordCounts">selectSQL_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上加上这个配置就能够了