浏览 7164 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2007-04-30
但同时在列出相关新闻的时候遇到了麻烦。就是原本运行好好的分页查询代码,居然有个小虫子跑出来, 很是令人不爽。说来也惭愧,Hibernate也用了那么长时间了。可对底层API却很不属性。 查了下网络,把自己的一知半解说出来。 bug起源。 看看代码: return (PageSupport) getHibernateTemplate().execute(
new HibernateCallback() { public Object doInHibernate(Session session) throws HibernateException { Criteria criteria = detachedCriteria .getExecutableCriteria(session); logger.debug("SQL: " + Projections.rowCount()); //执行查询 int totalCount = ((Integer) criteria.setProjection(Projections.rowCount()).uniqueResult()).intValue(); List items = criteria.setFirstResult(startIndex) .setMaxResults(pageSize).list(); PageSupport ps = new PageSupport(items, totalCount, pageSize, startIndex); return ps; } }, true); 相信大家对上面的代码也很熟悉了,这个代码第一次运行的时候没问题。 等你去拿第2页的时候,就提示说出现NullPointer。 发现是((Integer) criteria.setProjection(Projections.rowCount()).uniqueResult())为Null, 也就是根本就拿不到表总数。 为此我思考了好一阵子。 后来看了别人的代码才焕然大悟。 看第2个代码: return (PageSupport) getHibernateTemplate().execute(
new HibernateCallback() { public Object doInHibernate(Session session) throws HibernateException { Criteria criteria = detachedCriteria .getExecutableCriteria(session); CriteriaImpl impl = (CriteriaImpl) criteria; //先把Projection和OrderBy条件取出来,清空两者来执行Count操作 Projection projection = impl.getProjection(); logger.debug("SQL: " + Projections.rowCount()); //执行查询 int totalCount = ((Integer) criteria.setProjection(Projections.rowCount()).uniqueResult()).intValue(); //将之前的Projection和OrderBy条件重新设回去 criteria.setProjection(projection); if (projection == null) { criteria.setResultTransformer(CriteriaSpecification.ROOT_ENTITY); } List items = criteria.setFirstResult(startIndex) .setMaxResults(pageSize).list(); PageSupport ps = new PageSupport(items, totalCount, pageSize, startIndex); return ps; } }, true); 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2007-04-30
好像在别的地方看到过,现在好多朋友即在CSDN,又在blogjava,又在javaeye上面发表同一个文章,建议这样的朋友在发的时候,说明一下,不然,又要以为是转载了。
|
|
返回顶楼 | |