博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringSide封装Page类
阅读量:6244 次
发布时间:2019-06-22

本文共 2567 字,大约阅读时间需要 8 分钟。

package org.springside.modules.orm;

import .util.Collections;

import java.util.List;

import org.apache.commons.lang.StringUtils;

public class Page<T> {
 // 公共变量 //
 public static final String ASC = "asc";
 public static final String DESC = "desc";

 //分页参数 //

 protected int pageNo = 1;
 protected int pageSize = 1;
 protected String orderBy = null;
 protected String order = null;
 protected boolean autoCount = true;

 //返回结果 //

 protected List<T> result = Collections.emptyList();
 protected long totalCount = -1;

 // 构造函数 //

 public Page() {

 }

 public Page(final int pageSize) {

  setPageSize(pageSize);
 }

 public Page(final int pageSize, final boolean autoCount) {

  setPageSize(pageSize);
  setAutoCount(autoCount);
 }

 // 查询参数访问函数 //

 

 public int getPageNo() {
  return pageNo;
 }

 

 public void setPageNo(final int pageNo) {
  this.pageNo = pageNo;

  if (pageNo < 1) {

   this.pageNo = 1;
  }
 }

 

 public int getPageSize() {
  return pageSize;
 }

 

 public void setPageSize(final int pageSize) {
  this.pageSize = pageSize;

  if (pageSize < 1) {

   this.pageSize = 1;
  }
 }

 

 public int getFirst() {
  return ((pageNo - 1) * pageSize) + 1;
 }

 

 public String getOrderBy() {
  return orderBy;
 }

 

 public void setOrderBy(final String orderBy) {
  this.orderBy = orderBy;
 }

 

 public boolean isOrderBySetted() {
  return (StringUtils.isNotBlank(orderBy) && StringUtils.isNotBlank(order));
 }

 

 public String getOrder() {
  return order;
 }

 

 public void setOrder(final String order) {
  //检查order字符串的合法值
  String[] orders = StringUtils.split(StringUtils.lowerCase(order), ',');
  for (String orderStr : orders) {
   if (!StringUtils.equals(DESC, orderStr) && !StringUtils.equals(ASC, orderStr))
    throw new IllegalArgumentException("排序方向" + orderStr + "不是合法值");
  }

  this.order = StringUtils.lowerCase(order);

 }

 

 public boolean isAutoCount() {
  return autoCount;
 }

 

 public void setAutoCount(final boolean autoCount) {
  this.autoCount = autoCount;
 }

 // 访问查询结果函数 //

 

 public List<T> getResult() {
  return result;
 }

 public void setResult(final List<T> result) {

  this.result = result;
 }

 

 public long getTotalCount() {
  return totalCount;
 }

 public void setTotalCount(final long totalCount) {

  this.totalCount = totalCount;
 }

 

 public long getTotalPages() {
  if (totalCount < 0)
   return -1;

  long count = totalCount / pageSize;

  if (totalCount % pageSize > 0) {
   count++;
  }
  return count;
 }

 

 public boolean isHasNext() {
  return (pageNo + 1 <= getTotalPages());
 }

 

 public int getNextPage() {
  if (isHasNext())
   return pageNo + 1;
  else
   return pageNo;
 }

 

 public boolean isHasPre() {
  return (pageNo - 1 >= 1);
 }

 

 public int getPrePage() {
  if (isHasPre())
   return pageNo - 1;
  else
   return pageNo;
 }
}

转载地址:http://rsvia.baihongyu.com/

你可能感兴趣的文章
异常解决com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
查看>>
DateTable导出添加时间段
查看>>
【Dart学习】-- Dart之消息循环机制[翻译]
查看>>
埃森哲杯第十六届上海大学程序设计联赛春季赛暨上海高校金马五校赛 I题 二数...
查看>>
【转】浅谈Java中的hashcode方法(这个demo可以多看看)
查看>>
Super Ugly Number
查看>>
LeetCode – Refresh – Linked List Cycle II
查看>>
设计模式第三次作业
查看>>
Iterator<Entry<String,String>> iter=map.entrySet().iterator(); 是什么意思
查看>>
VM各寄存器作用
查看>>
jupyter Notebook环境搭建
查看>>
python文件上传的三种方式
查看>>
python基础学习18----面向对象简述
查看>>
Android Browser学习三 多窗口: 展示第一个Tab的过程
查看>>
java资源下载之官网地址
查看>>
学习java字符串编码总结
查看>>
Debussy---快速上手(2)
查看>>
light oj 1079 - Just another Robbery 【01背包】
查看>>
Scrapy爬虫入门
查看>>
c++运算符重载
查看>>