使用myBatis返回ResultMap中的总行数

时间:2011-04-04 09:21:05

标签: java select mybatis

我为这个扩展的ResultMap创建了另外两个字段rowNumber和totalRows。是的,现在我有总行数,但它存储在结果图中的每个对象中。

<resultMap id="BaseResultMapPagination" type="com.example.emaildto.EmailScheduleDTO" extends="BaseResultMap">
  <result property="rowNumber" column="row_number"/>
  <result property="totalRows" column="total_count"/>
</resultMap>
<select id="selectByExamplePagination" resultMap="BaseResultMapPagination" parameterType="com.example.emailservice.model.EmailScheduleCriteria">
WITH t as (
    select row_number() OVER(<include refid="orderByPagination"/>) as row_number, 
    count(*) OVER () as total_count,
    * from EmailSchedule t
     <if test="_parameter != null" >
         <include refid="Example_Where_Clause" />
     </if>
)
select * from t where row_number &gt;= #{pageInfo.startRow} AND row_number &lt; #{pageInfo.endRow}
order by row_number ASC
</select>

我怎样才能解决这个问题?

1 个答案:

答案 0 :(得分:0)

不,不在同一个查询中。 <resultMap/>为从SELECT语句返回的每条记录的每个条目添加两列,因为这是它返回的内容。为了获得返回的总行数,您可以触发第二个查询或获取返回的集合的大小。