Hibernate的分页技术是透明的,,你理解最好,不能理解先用着呗。。
说白了就是查询语句中你不用写上一堆的分页语句了,Hibernate已经实现了,但最终的查询跟手工的查询没两样,oracle用的还是rownum,mysql还是用的limit。
蔡华江 (资深架构师) 2009-10-21
-
-
-
- @SuppressWarnings("unchecked")
- public List resouce(Integer FirstResult,Integer MaxResults){
-
- String querySentence = "from"+" "+ entityClass.getName();
- Query query = getSession().createQuery(querySentence);
- query.setFirstResult(FirstResult)
- .setMaxResults(MaxResults);
- return query.list();
- }
这里有2个参数,一个是FirstResult,意思是从第几个开始,如果你要查从第一个开始,就填0(应该是从0+1开始的)。
第二个参数是,MaxResults,就是从FirstResult开始取几个。比如:如果你的FirstResult为1,那么如果你想取十个的话,那么此时的MaxResults为 FirstResult+10。
treblesoftware (初级程序员) 2009-10-21
你需要做2样事情。
第一,你需要一个PAGE对象,里面封装一些基本的参数,比如:当前的页数,下一页,上一页,总页数。
第二,你需要在JSP页面去构件一个用于交互的环境。
举例:
- public String adminBlogPassageManage(){
-
- intRowCount = blogPassageService.total("order by id");
- total = (intRowCount / 20)+1;
- if (total <= 0)
- total = 1;
-
- if (pageNo > total)
- pageNo = total;
- int i = (pageNo - 1) * 20;
-
- int FirstResult = i;
- int MaxResults = 20;
- blogPassages = blogPassageService.AdminListBlogPassageByPage(FirstResult, MaxResults,"order by catergoryId");
- return SUCCESS;
- }
这段代码显示了,根据几个参数获取页面需要的LIST。因为我用的是STRUTS2自己写的一个分页主件,所以简单了很多,但是意思都是参不多的,你到网上找找JSP分页的主件,到时候用这个思路,就可以解决问题了。
treblesoftware (初级程序员) 2009-10-21
对不起,上面写错了。
- intRowCount = blogPassageService.total("order by id");
- total = (intRowCount / 5)+1;
- if (total <= 0)
- total = 1;
-
- if (pageNo > total)
- pageNo = total;
- int i = (pageNo - 1) * 5;
把20改为5。
treblesoftware (初级程序员) 2009-10-21
看来哥们都给你说的很明白了。小弟也就不在言辞了。
gaoyangboy (初级程序员) 2009-10-21
我晕。我已经说的很明白了。
你不要急,要慢慢的去理解,一开始是有点抽象。你得知道页面需要几个参数,之后根据这几个参数算出FirstResult,MaxResults,之后传给HIBERNATE就行了。
treblesoftware (初级程序员) 2009-10-21
我最喜欢传递以下三个参数
start从那里开始分;limit这一页分多少个;total总记录数
这个我特别喜欢,清楚,有了这三个参数,其余的多少页,开始页都可以算得出来。
hibernate中用的的参数就是start和limit
你要是不理解,最好自己写例子,就传递这三个参数,然后在页面中计算出来其余的值。。
蔡华江 (资深架构师) 2009-10-21
可以使用这个分页的类作为辅助,设置当前页(currentPage)每页显示记录数(pageSize),再设置总记录数(recordCount)
- import java.util.List;
-
- public class Page {
-
- private int pageSize;
- private int currentPage;
- private int pageCount;
- private int recordCount;
- private int nextPage;
- private int beforePage;
- private List result;
-
- public List getResult() {
- return result;
- }
- public void setResult(List result) {
- this.result = result;
- }
- public int getPageSize() {
- return pageSize;
- }
- public void setPageSize(int pageSize) {
- this.pageSize = pageSize;
- }
- public int getCurrentPage() {
- return currentPage;
- }
- public void setCurrentPage(int currentPage) {
- this.currentPage = currentPage;
- }
- public int getPageCount() {
- return pageCount;
- }
- public void setPageCount(int pageCount) {
- this.pageCount = pageCount;
- }
- public int getRecordCount() {
- return recordCount;
- }
- public void setRecordCount(int recordCount) {
- this.recordCount = recordCount;
- if (recordCount % this.pageSize == 0) {
- this.pageCount = recordCount / this.pageSize;
- } else {
- this.pageCount = recordCount / this.pageSize + 1;
- }
- if (this.pageCount == 1) {
- this.nextPage = 1;
- this.beforePage = 1;
- this.currentPage = 1;
- } else if (this.currentPage >= this.pageCount) {
- this.currentPage = this.pageCount;
- this.nextPage = this.pageCount;
- this.beforePage = this.pageCount - 1;
- } else if (this.currentPage < 1) {
- this.currentPage = 1;
- this.beforePage = 1;
- this.nextPage = 2;
- } else {
- if (this.currentPage == 1) {
- this.beforePage = 1;
- } else {
- this.beforePage = this.currentPage - 1;
- }
- this.nextPage = this.currentPage + 1;
- }
- }
- public int getNextPage() {
- return nextPage;
- }
- public void setNextPage(int nextPage) {
- this.nextPage = nextPage;
- }
- public int getBeforePage() {
- return beforePage;
- }
- public void setBeforePage(int beforePage) {
- this.beforePage = beforePage;
- }
- }
lzysystem (初级程序员) 2009-10-21
给你推荐一篇文章是robbin在05年写的,后面有几个跟帖的也都有很大的学习和参考价值,http://www.iteye.com/topic/14657,我现在用的分页是在把这个帖子和跟帖看了好多遍之后做出来的
01404421 (高级程序员) 2009-10-22
我也来说两句,
分页就是把一整个数据集分成几份来显示,每一份显示几条,你先想清楚,你每一份有几条数据,然后再拿张纸拿张笔,来算,第一份是从第几条开始,到第几条结束,第二份从第几条开始,到第几条结束,这个每一份显示几条呢,就是大家说的pageSize,第一份,第二份。。。。。这个第几份呢,就是第几页,而上一页呢,就是比如我现在到了第二页,我想去看第一页的数据,那是不是当前的页减一,就成了第一页了,对吧,这是有规律的,你从数据库里面拿出来的只是当前要显示的数据,和总共的数据量,至于当前第几页,从第几条开始显示,都是你自己算出来的,与数据库无关,你拿到当前要显示的数据集后,就是一个List,把这个List可以先放到一个自定义对象中再放到request中,也可以直接放到request中,都可以,这个List中的每一个元素就是一个对象(因为你用的是Hibernate),这个对象就是与你查询的表相映射的那个对象,然后在jsp页面中就从request中拿出这个集合(知道怎么拿吧,不知道就去学jsp),再使用jstl或者是其他的循环标签,基本上就可以使用了,应该能看得懂吧
wangdgsc (初级程序员) 2009-10-22
先别想Hibernate,先去搞个jdbc分页,把分页搞清楚了,再去看Hibernate,那不过是换一种简单点儿的实现方式,本质不变的
wangdgsc (初级程序员) 2009-10-22
我之前用的是struts1+spring+hibernate做的一个小项目,我用的分页代码你参考一一下:http://www.netded.com/read-htm-tid-4336.html