文章列表
2009-07-30
ibatis调用oracle存储过程分页
关键字: oracle存储过程分页
1、users.xml片段
Xml代码
<resultMap class="user" id="get-all-user">
<result property="id" column="id" />
<result property="userName" column="username" />
...
package myownthread;
/**
* 分页
*/
public class Page {
public static final int PAGESIZE = 20;
/**
* 总记录数
*/
private int totalRowsAmount;
/**
* 是否设置总记录数
*/
private boolean rowsAmountSet;
/**
* 每页记录数
*/
private int pageSize = PAGESIZE;
/**
* 当前页
*/
private int currentPage = 1; ...