Hibernate3 提供了DetachedCriteria,使得我们可以在Web层构造detachedCriteria,然后调用业务层Bean,进行动态条件查询,根 据这一功能,我设计了通用的抽象Bean基类和分页类支持,代码来自于Quake Wang的javaeye-core包的相应类,然后又做了很多修改。
分页支持类:
package org.exam.util;
import java.util.List;
public class PaginationSupport {
public final static int PAGESIZE = 30;
private int pageSize = PAGESIZE;
private List items;
private int totalCount;
private int[] indexes = new int[0];
private int startIndex = 0;
public PaginationSupport(List items, int totalCount) {
setPageSize(PAGESIZE);
setTotalCount(totalCount);
setItems(items);
setStartIndex(0);
}
public PaginationSupport(List items, int totalCount, int startIndex) {
setPageSize(PAGESIZE);
setTotalCount(totalCount);
setItems(items);
setStartIndex(startIndex);
}
public PaginationSupport(List items, int totalCount, int pageSize, int startIndex) {
setPageSize(pageSize);
setTotalCount(totalCount);
setItems(items);
setStartIndex(startIndex);
}
public List getItems() {
return items;
}
public void setItems(List items) {
this.items = items;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public int getTotalCount() {
return totalCount;
}
public void setTotalCount(int totalCount) {
if (totalCount > 0) {
this.totalCount = totalCount;
int count = totalCount / pageSize;
if (totalCount % pageSize > 0)
count++;
indexes = new int[count];
for (int i = 0; i < count; i++) {
indexes[i] = pageSize * i;
}
} else {
this.totalCount = 0;
}
}
public int[] getIndexes() {
return indexes;
}
public void setIndexes(int[] indexes) {
this.indexes = indexes;
}
public int getStartIndex() {
return startIndex;
}
public void setStartIndex(int startIndex) {
if (totalCount <= 0)
this.startIndex = 0;
else if (startIndex >= totalCount)
this.startIndex = indexes[indexes.length - 1];
else if (startIndex < 0)
this.startIndex = 0;
else {
this.startIndex = indexes[startIndex / pageSize];
}
}
public int getNextIndex() {
int nextIndex = getStartIndex() + pageSize;
if (nextIndex >= totalCount)
return getStartIndex();
else
return nextIndex;
}
public int getPreviousIndex() {
int previousIndex = getStartIndex() - pageSize;
if (previousIndex < 0)
return 0;
else
return previousIndex;
}
}
service层方法:
package org.exam.service.impl;
import java.util.List;
import org.exam.dao.QuestionDao;
import org.exam.dao.TestQuestionsDao;
import org.exam.model.Question;
import org.exam.model.TestQuestions;
import org.exam.service.QuestionService;
import org.exam.util.PaginationSupport;
import org.hibernate.criterion.DetachedCriteria;
import org.hibernate.criterion.Restrictions;
public class QuestionServiceImpl implements QuestionService{
private QuestionDao questionDao;
private TestQuestionsDao testQuestionsDao;
public TestQuestionsDao getTestQuestionsDao() {
return testQuestionsDao;
}
public void setTestQuestionsDao(TestQuestionsDao testQuestionsDao) {
this.testQuestionsDao = testQuestionsDao;
}
public QuestionDao getQuestionDao() {
return questionDao;
}
public void setQuestionDao(QuestionDao questionDao) {
this.questionDao = questionDao;
}
public Integer add(Integer tqid , String title , String hard , String type , Integer score)
{
Question q = new Question();
q.setTq((TestQuestions)testQuestionsDao.findById(tqid).get(0));
q.setTitle(title);
q.setHard(hard);
q.setType(type);
q.setScore(score);
questionDao.save(q);
return q.getId();
}
public boolean delete(Integer id)
{
questionDao.delete(id);
return true;
}
public List<Question> getByTqid(Integer id)
{
List<Question> tmp = questionDao.findByTqId(id);
return tmp;
}
public List<Question> getAll(int pageSize , int index)
{
DetachedCriteria detachedCriteria = getDetachedCriteria();
PaginationSupport ps = questionDao.findPageByCriteria(detachedCriteria , pageSize , index);
return(ps.getItems());
}
private DetachedCriteria getDetachedCriteria(String key)
{
DetachedCriteria detachedCriteria = DetachedCriteria.forClass(Question.class);
detachedCriteria.add(Restrictions.like("title", "%"+key+"%"));
return detachedCriteria;
}
private DetachedCriteria getDetachedCriteria()
{
DetachedCriteria detachedCriteria = DetachedCriteria.forClass(Question.class);
return detachedCriteria;
}
public List<Question> getByKey(String key , int pageSize , int index)
{
DetachedCriteria detachedCriteria = getDetachedCriteria(key);
PaginationSupport ps = questionDao.findPageByCriteria(detachedCriteria , pageSize , index);
return(ps.getItems());
}
public int getCount(String key)
{
DetachedCriteria detachedCriteria = getDetachedCriteria(key);
PaginationSupport ps = questionDao.findPageByCriteria(detachedCriteria);
return ps.getTotalCount();
}
public int getIndex(String key)
{
DetachedCriteria detachedCriteria = getDetachedCriteria(key);
PaginationSupport ps = questionDao.findPageByCriteria(detachedCriteria);
return ps.getStartIndex();
}
public int getCount()
{
DetachedCriteria detachedCriteria = getDetachedCriteria();
PaginationSupport ps = questionDao.findPageByCriteria(detachedCriteria);
return ps.getTotalCount();
}
public int getIndex()
{
DetachedCriteria detachedCriteria = getDetachedCriteria();
PaginationSupport ps = questionDao.findPageByCriteria(detachedCriteria);
return ps.getStartIndex();
}
public int getNextIndex(String key , int pageSize , int index)
{
DetachedCriteria detachedCriteria = null;
if(key == null)
{
detachedCriteria = getDetachedCriteria();
}
else
{
detachedCriteria = getDetachedCriteria(key);
}
PaginationSupport ps = questionDao.findPageByCriteria(detachedCriteria , pageSize , index);
return ps.getNextIndex();
}
public int getPreviousIndex(String key , int pageSize , int index)
{
DetachedCriteria detachedCriteria = null;
if(key == null)
{
detachedCriteria = getDetachedCriteria();
}
else
{
detachedCriteria = getDetachedCriteria(key);
}
PaginationSupport ps = questionDao.findPageByCriteria(detachedCriteria , pageSize , index);
return ps.getPreviousIndex();
}
public int getLast(String key , int pageSize)
{
DetachedCriteria detachedCriteria = null;
if(key == null)
{
detachedCriteria = getDetachedCriteria();
}
else
{
detachedCriteria = getDetachedCriteria(key);
}
PaginationSupport ps = questionDao.findPageByCriteria(detachedCriteria);
int index = ps.getTotalCount()/pageSize + ps.getTotalCount()%pageSize;
return (index - 1) * pageSize;
}
}
用户在web层构造查询条件detachedCriteria,和可选的startIndex,调用业务bean的相应findByCriteria方法,返回一个PaginationSupport的实例ps。
ps.getItems()得到已分页好的结果集
ps.getIndexes()得到分页索引的数组
ps.getTotalCount()得到总结果数
ps.getStartIndex()当前分页索引
ps.getNextIndex()下一页索引
ps.getPreviousIndex()上一页索引
分享到:
相关推荐
### 使用Hibernate实现分页查询 #### 一、分页查询概念及原理 分页查询是一种在数据量较大的情况下,为了提高用户体验和系统性能而采取的一种技术手段。它将查询结果分成若干页显示,用户可以通过翻页操作查看不同...
java+hibernate实现分页 public String execute() throws Exception { System.out.println("Page:" + page); pagePlanList = ps.findPlantByPage(page, rowsPerPage); totalPage = ps.getPlanTotalPage...
本篇将介绍如何使用Struts和Hibernate框架来实现Web应用中的分页功能。 首先,Struts是一个基于MVC(Model-View-Controller)设计模式的Java Web框架,它负责处理用户请求并控制应用程序的流程。而Hibernate则是一...
根据提供的标题、描述、标签及部分内容,我们可以了解到这篇文章主要探讨的是如何在Struts2与Hibernate框架结合下实现分页功能。接下来将详细解析Struts2与Hibernate如何协作完成这一任务。 ### Struts2与Hibernate...
### Hibernate 实现分页查询详解 #### 一、引言 在进行数据库操作时,为了提高用户体验和系统性能,分页查询是一项非常重要的技术。...以上就是关于Hibernate实现分页查询的具体介绍,希望对大家有所帮助。
根据提供的标题、描述以及部分内文,我们可以梳理出关于如何使用Struts2与Hibernate实现分页功能的关键知识点。 ### Struts2与Hibernate简介 - **Struts2**:这是一个基于MVC架构的开源Web框架,它能帮助开发者...
本教程将详细讲解如何使用Hibernate实现分页功能,这对于处理大量数据的Web应用来说至关重要,因为它能够有效地减少数据库负载,提高用户体验。 一、Hibernate分页基础 1. Hibernate的Query和Criteria API都提供了...
【标题】:“Hibernate实现分页” 在Web应用程序开发中,数据分页是一种常见的需求,它有助于提高用户体验,尤其是在处理大量数据时。Hibernate作为一款流行的Java持久化框架,提供了多种方式来实现分页查询。本...
【Struts2+Hibernate实现分页详解】 在Java Web开发中,Struts2和Hibernate是两个非常重要的框架,它们分别负责MVC模式中的控制层和持久层。Struts2提供了强大的Action类和拦截器,使得业务逻辑处理更加简洁;而...
本项目“Extjs+Spring+Hibernate实现分页”结合了三种强大的技术,以构建一个高效、灵活的数据分页系统。下面将详细介绍这三个技术以及它们在分页中的应用。 1. **ExtJS**:ExtJS是一个JavaScript库,专门用于构建...
ExtJs4.2+Mysql+Struts2+Hibernate3实现分页查询 1.libs目录缺少hibernate核心jar包 2.libs目录缺少struts jar 3.WebRoot目录缺少ExtJs4.2核心类库 以上信息我都在项目里面注明了,因为这些内容的文件太大了,CSDN不...
hibernate_mysql_struts2 实现的通用分页类.欢迎指正
4. 使用`Pageable`接口实现分页查询 5. Controller层处理分页请求并返回响应 这个简单的例子展示了Spring Boot与Hibernate结合的强大之处,使我们能快速开发出具有分页功能的数据查询API。在实际项目中,还可以根据...
本文将深入探讨如何利用Spring和Hibernate实现完整的分页功能,并结合MySQL数据库进行操作。 首先,Spring是一个轻量级的框架,它提供了全面的DI服务,允许开发者通过XML配置或注解来管理对象的生命周期和依赖关系...
### 在JDBC与Hibernate中实现分页功能 随着数据量的不断增长,...通过上述介绍可以看出,无论是使用Hibernate还是JDBC,合理设计和实现分页功能能够显著提升用户界面的性能和响应速度,同时也提高了系统的整体性能。
例如,使用Criteria API,我们可以设置`setFirstResult()`和`setMaxResults()`来实现分页。 此外,为了在页面上显示分页效果,我们需要在JSP(Java Server Pages)中使用Struts的标签库,如`s:iterator`标签遍历...
在Hibernate中,我们可以使用Criteria、HQL(Hibernate Query Language)或者JPA的Query来实现分页查询。然而,这些方式在每个查询中都需要编写重复的分页代码,这降低了代码的复用性。因此,创建一个通用的分页辅助...
总的来说,使用Struts和Hibernate实现分页功能,需要结合MVC模式和ORM思想,合理设计数据访问层和业务逻辑层,同时确保前端与后端的有效通信。这个过程涉及到了Java编程、数据库操作、框架理解和页面渲染等多个方面...
hibernate分页