欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

Mybatis RowBounds 限制查询条数的实现代码

时间:2021-06-14 09:47:56|栏目:JAVA代码|点击:

Oracle 数据库,查询增加RowBounds限制查询条数,默认是0到1000条

private final static int rowLimit = 1000; 
//限制查询条数 
private final static RowBounds QUERY_LIMIT=new RowBounds(0,rowLimit); 
public List<T> select(String sqlID, T t) throws DBException, 
RecordNotFoundException { 
List<T> ret; 
try { 
if ("".equals(sqlID) || (null == sqlID)) { 
ret = getSqlSession().selectList(t.getMapperName() + SELECT, t,QUERY_LIMIT); 
} else { 
ret = getSqlSession().selectList(t.getMapperName() + MAPPER + sqlID, 
t,QUERY_LIMIT); 
} 
} catch (Exception e) { 
LOGGER.error(e.getMessage(), e); 
LOGGER.debug(t.toString()); 
throw new DBException(e); 
} 
if (ret == null && checkNull) { 
throw new RecordNotFoundException(t.getTableName()); 
} 
return ret; 
}

上一篇:详解log4j.properties的简单配置和使用

栏    目:JAVA代码

下一篇:Java源码角度分析HashMap用法

本文标题:Mybatis RowBounds 限制查询条数的实现代码

本文地址:http://www.codeinn.net/misctech/141953.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有