1. 程式人生 > >Mybatis 分頁

Mybatis 分頁

less namespace als order sta mes type utf-8 space

<?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 分頁