HQL的通用分页

通过书籍名字模糊查询&分页的功能,通常情况下可以如下写查询的方法,但如果查询维度较多且比较麻烦。
在这里插入图片描述
新写一个BaseDao代码处理:

package com.zking.eight.util;

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

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

/**
 * 分页:
 * jdbc:
 * executeQuery(String sql,PageBean pageBean,Class clz)
 * sql: select * from t_hibernate_book where book_name like '%?%'
 *      select * from t_hibernate_book where book_name like '%圣墟%'
 *
 *    countSql=select count(*) from (sql) t;
 *
 *分页:
 *1、sql--->转成countSql(查符合条件的总记录数)--->total-->给到pageBean
 *2、sql-->转成分页sql-->(交给entitybasedao)result
 *3、处理结果集
 *
 *hql:
 *  select * from Book where bookName like '%:bookName%'
 *     select count(*) from (hql) t
 *1、hql--->countHql--->total-->pageBean
 *2、sql-->sql-->result(hibernate调用内置接口自动生成分页语句,查询结果)
 *
 * @author Administrator
 */
public class BaseDao {

	private void setParameter(Query query,Map<String, Object> map) {
		if (map == null || map.size() == 0) {
			 return;
		}
		Object value=null;
		//给value赋值
		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);
			}
		}		
	}
	
	private String getcountHql(String hql) {
		int index= hql.toUpperCase().indexOf("FROM");
		return "select count(*)"+hql.substring(index);
		
	}
	
	public List excuteQuery(String hql,PageBean pageBean,Map<String, Object> map,Session session) {
		if (pageBean != null && pageBean.isPagination()) {
			String countHql = getcountHql(hql);
			Query countQuery = session.createQuery(countHql);
            this.setParameter(countQuery, map);
			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 null;
		}
		  
	}
}

PageBean代码:

package com.zking.eight.util;

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.zking.eight.util;

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);
	}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

--x

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值