MyBatis中實現分頁功能可以通過使用RowBounds
對象或者在SQL語句中使用LIMIT和OFFSET關鍵字來實現。
RowBounds
對象:
在Mapper接口的方法中添加RowBounds
對象作為參數,然后在SQL語句中通過RowBounds
對象指定查詢的起始位置和數量。List<User> getUsers(RowBounds rowBounds);
<select id="getUsers" resultType="User">
select * from user
limit #{offset}, #{limit}
</select>
以上兩種方式都可以實現分頁功能,具體使用哪種方式取決于個人的喜好和項目需求。