欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Hibernate的Criteria查询分页示例

程序员文章站 2022-04-15 22:05:53
...
[color=red]前言:需要注意的是时间区间的查询,字符串转时间一定要转换正确。[/color]
1、时间转换

/**
* 字符串时间通过Calendar转成Date类型
*
* @param date 字符串时间
*
* @param format 匹配日期格式
* @return
* @throws ParseException
*/
private Date parseStrToDateByCalendar(String date,String format) throws ParseException{
SimpleDateFormat formatter = new SimpleDateFormat(format);
Calendar calendar=Calendar.getInstance();
calendar.setTime(formatter.parse(date));
Date convertedDate=calendar.getTime();
return convertedDate;
}


2、分页查询

public Map<String, Object> getHistoryAlramByType(String carNumber,
String startTime, String endTime, int type, int status, int doflag,
int pageNo, int pageSize, String sortName, String sortOrder) {
Criteria criteria = getSession().createCriteria(Alarm.class);
criteria.add(Restrictions.eq("alarmType", type));
if (!startTime.equals("") && !endTime.equals("")) {
Date startDate=null,endDate=null;
try {
startDate = this.parseStrToDateByCalendar(startTime, "yyyy-MM-dd HH:mm:ss");
} catch (ParseException e) {
e.printStackTrace();
}
try {
endDate = this.parseStrToDateByCalendar(endTime, "yyyy-MM-dd HH:mm:ss");
} catch (ParseException e) {
e.printStackTrace();
}
criteria.add(Restrictions.between("serviceTime", startDate, endDate));
}
if (!carNumber.equals("")) {
criteria.add(Restrictions.eq("carNumber", carNumber));
}
if (status != -2) {
criteria.add(Restrictions.eq("status", status));
}
if (doflag != -1) {
criteria.add(Restrictions.eq("doFlag", doflag));
}
int total =criteria.list().size(); // 统计符合条件数据的总数
if (sortOrder.equals("asc")) { // 按字段排序
criteria.addOrder(Order.asc(sortName));
} else {
criteria.addOrder(Order.desc(sortName));
}
criteria.setMaxResults(pageSize); // 最大显示记录数
criteria.setFirstResult((pageNo-1)*pageSize); // 从第几条开始
List<Alarm> list = criteria.list();

Map<String, Object> map = new HashMap<String, Object>();
map.put("Total", total);
map.put("Rows", list);
return map;
}