1. hack mybaits 的原生分页,写一个分页插件,仍然调用 mybaits 提供的分页接口即可2. 手动编写分页 sql ,例如:在 Mapper 里面select * from test limit #{offset}, #{limit}在 dao 里面调用的时候,传入 offset 和 limit 两个参数即可。不需要调用原生提供的 带 RowBound 的分页查询