hql运用二

一、通用分页
以下代码为通用分页的代码,并有详细注解
分为BaseDao、PageBean、StringUtils三个类

package com.zk.eight.dao;

import java.util.Collection;
import java.util.List;
import java.util.Map;

import org.hibernate.Session;
import org.hibernate.query.Query;

/**
 * 
 * 作用:
 * 	   1、将赋值的操作交给basedao
 * 	   2、分页
 * 			a、查询符合条件的总记录数
 * 			b、查询符合条件的某一页记录
 * @author Administrator
 *
 */
public class BaseDao {
	/**
	 * 赋值的操作
	 * @param query  预定义对象
	 * @param map    前台传递过来的参数
	 */
	private void setParameter(Query query,Map<String, Object> map) {
//		query.setParameter("bookName", "%"+book.getBookName()+"%");
		if(map==null || map.size()==0) {
			return;
		}
		
		Object value=null;
		for (Map.Entry<String,Object> entry : map.entrySet()) {
			value=entry.getValue();
			if(value instanceof Collection) {
				query.setParameterList(entry.getKey(), (Collection)value);
			}else if(value instanceof Object[]) {
				query.setParameterList(entry.getKey(), (Object[])value);
			}else {
				query.setParameter(entry.getKey(), value);
			}
		}
	}
	
	
	/**
	 *	sql=select * from t_hibernate_book where book_name like '%三国%'
	 * 	select count(*) from (select * from t_hibernate_book where book_name like '%三国%')
	 *	pageSql=sql+" limit ?,?"    hibernate中这一步省略
	 *	 
	 *	hql=from Book where bookName like '%三国%'
	 *	hql=select bookName,price from Book where bookName like '%三国%'
	 *	
	 *	思路:
	 *		截取from后的sql语句,前面拼接select count(*)
	 *		from
	 *		From
	 *		fRom
	 *		froM
	 *		
	 *	转成大写
	 *	FROM
	 *
	 */
	
	/**
	 * 
	 * 查询出符合条件的总记录数
	 * @param hql
	 * @return
	 */
	public String getCountHql(String hql) {
		int index = hql.toUpperCase().indexOf("FROM");
		return "select count(*) "+hql.substring(index);
	}
	
	public List exectuQuery(Session session,String hql,PageBean pageBean,Map<String, Object> map) {
		if(pageBean!=null&&pageBean.isPagination()) {
			//select count(*) from Book where bookName like '%三国%'
			String countHql = getCountHql(hql);
			 Query countQuery = session.createQuery(countHql);
			 this.setParameter(countQuery, map);
			 //pageBean设置总记录数最后用于分页
			 String total = countQuery.getSingleResult().toString();
			 pageBean.setTotal(total);
			 
			 
			 //查询展示的数据
			 Query pageQuery = session.createQuery(hql);
			 this.setParameter(pageQuery, map);
			 pageQuery.setFirstResult(pageBean.getStartIndex());
			 pageQuery.setMaxResults(pageBean.getRows());
			return pageQuery.list();
		}else {
			Query query = session.createQuery(hql);
			this.setParameter(query, map);
			return query.list();
		}
	}
	
}

PageBean

package com.zk.eight.dao;

import java.util.Map;

import javax.servlet.http.HttpServletRequest;

/**
 * 分页工具类
 *
 */
public class PageBean {

	private int page = 1;// 页码

	private int rows = 3;// 页大小

	private int total = 0;// 总记录数

	private boolean pagination = true;// 是否分页
	// 获取前台向后台提交的所有参数
	private Map<String, String[]> parameterMap;
	// 获取上一次访问后台的url
	private String url;

	/**
	 * 初始化pagebean
	 * 
	 * @param req
	 */
	public void setRequest(HttpServletRequest req) {
		this.setPage(req.getParameter("page"));
		this.setRows(req.getParameter("rows"));
		// 只有jsp页面上填写pagination=false才是不分页
		this.setPagination(!"fasle".equals(req.getParameter("pagination")));
		this.setParameterMap(req.getParameterMap());
		this.setUrl(req.getRequestURL().toString());
	}

	public int getMaxPage() {
		return this.total % this.rows == 0 ? this.total / this.rows : this.total / this.rows + 1;
	}

	public int nextPage() {
		return this.page < this.getMaxPage() ? this.page + 1 : this.getMaxPage();
	}

	public int previousPage() {
		return this.page > 1 ? this.page - 1 : 1;
	}

	public PageBean() {
		super();
	}

	public int getPage() {
		return page;
	}

	public void setPage(int page) {
		this.page = page;
	}

	public void setPage(String page) {
		this.page = StringUtils.isBlank(page) ? this.page : Integer.valueOf(page);
	}

	public int getRows() {
		return rows;
	}

	public void setRows(int rows) {
		this.rows = rows;
	}

	public void setRows(String rows) {
		this.rows = StringUtils.isBlank(rows) ? this.rows : Integer.valueOf(rows);
	}

	public int getTotal() {
		return total;
	}

	public void setTotal(int total) {
		this.total = total;
	}

	public void setTotal(String total) {
		this.total = Integer.parseInt(total);
	}

	public boolean isPagination() {
		return pagination;
	}

	public void setPagination(boolean pagination) {
		this.pagination = pagination;
	}

	public Map<String, String[]> getParameterMap() {
		return parameterMap;
	}

	public void setParameterMap(Map<String, String[]> parameterMap) {
		this.parameterMap = parameterMap;
	}

	public String getUrl() {
		return url;
	}

	public void setUrl(String url) {
		this.url = url;
	}

	/**
	 * 获得起始记录的下标
	 * 
	 * @return
	 */
	public int getStartIndex() {
		return (this.page - 1) * this.rows;
	}

	@Override
	public String toString() {
		return "PageBean [page=" + page + ", rows=" + rows + ", total=" + total + ", pagination=" + pagination
				+ ", parameterMap=" + parameterMap + ", url=" + url + "]";
	}

}

StringUtils

package com.zk.eight.dao;

public class StringUtils {
	// 私有的构造方法,保护此类不能在外部实例化
	private StringUtils() {
	}

	/**
	 * 如果字符串等于null或去空格后等于"",则返回true,否则返回false
	 * 
	 * @param s
	 * @return
	 */
	public static boolean isBlank(String s) {
		boolean b = false;
		if (null == s || s.trim().equals("")) {
			b = true;
		}
		return b;
	}
	
	/**
	 * 如果字符串不等于null或去空格后不等于"",则返回true,否则返回false
	 * 
	 * @param s
	 * @return
	 */
	public static boolean isNotBlank(String s) {
		return !isBlank(s);
	}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值