Mybatis 分页

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis 分页相关的知识,希望对你有一定的参考价值。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="user.page">

<!-- 分页查询
在xml文件中小于号是标签的开始. 不能使用.
小于 -> &lt; less than
大于 -> &gt;
小于等于 -> &lte; less than and equals
大于等于 -> &gte;
<![CDATA[]]> -> 代表在标签体内编写所有的信息,都是纯文本.不需要做任何的标签解析,xml解析.
-->
<select id="selectUserByPage" resultType="User">
<![CDATA[
select u2.id, u2.name, u2.password, u2.age from
(select u1.id, u1.name, u1.password, u1.age, u1.rn from
(select id, name, password, age, rownum as rn
from tb_user order by id) u1
where u1.rn < #{endIndex} ) u2
where u2.rn > #{startIndex}
]]>
</select>

</mapper>





















以上是关于Mybatis 分页的主要内容,如果未能解决你的问题,请参考以下文章

mybatis分页插件哪个最好

mybatis一对多分页查询

关于mybatis物理分页的问题,求大神帮忙看看

MyBatis学习总结_17_Mybatis分页插件PageHelper

java mybatis 分页模糊查询页面怎么写

Mybatis-plus之分页泛型转换