Hibernate动态条件查询并分页

应用实例截图:

前台提交数据,用户可以有选择的进行填写

好吧~ 还是直接上代码吧.....

1.用户接收前台页面提交的数据DTO,该类用户接收商品Commodity的信息

public class CommodityDTO {
	
	private Integer categoryId; // 一级分类id
	private Integer subCategoryId; // 二级分类id
	private String name;	// 商品名称
	private Float fromPrice; // 起始价格
	private Float toPrice;
	private Integer fromSalesVolume; // 起始销售量
	private Integer toSalesVolume;
	
	// 此处省略set/get方法
}	

2.DAOImpl层

@Override
	public List<Commodity> queryByRestrictions(CommodityDTO commodityDTO, int pageOffset, int pageSize) {
		Session session = this.getSession();
		DetachedCriteria dc = myDetachedCriteria(commodityDTO);

		List<Commodity> commodities = dc.getExecutableCriteria(session)
								.setFirstResult(pageOffset).setMaxResults(pageSize).list();
		return commodities;
	}



      /**
	 * 添加动态条件
	 * 
	 * @param commodityDTO
	 * @return
	 */
	private DetachedCriteria myDetachedCriteria(CommodityDTO commodityDTO) {

		DetachedCriteria dc = DetachedCriteria.forClass(Commodity.class);

		Integer categoryId = commodityDTO.getCategoryId();
		Integer subCategoryId = commodityDTO.getSubCategoryId();
		String name = commodityDTO.getName();
		Float fromPrice = commodityDTO.getFromPrice();
		Float toPrice = commodityDTO.getToPrice();
		Integer fromSalesVolume = commodityDTO.getFromSalesVolume();
		Integer toSalesVolume = commodityDTO.getToSalesVolume();

		if (categoryId != null && categoryId.intValue() > 0) {
			dc.add(Restrictions.eq("category.id", categoryId));
		}
		if (subCategoryId != null && subCategoryId.intValue() > 0) {
			dc.add(Restrictions.eq("subCategory.id", subCategoryId));
		}

		if (name != null && !"".equals(name.trim())) {
			dc.add(Restrictions.eq("name", name));
		}

		if (fromPrice != null && fromPrice.intValue() > 0) {
			dc.add(Restrictions.ge("price", fromPrice));
		}
		if (toPrice != null && toPrice.intValue() > 0) {
			dc.add(Restrictions.le("price", toPrice));
		}

		if (fromSalesVolume != null && fromSalesVolume.intValue() > 0) {
			dc.add(Restrictions.ge("salesVolume", fromSalesVolume));
		}
		if (toSalesVolume != null && toSalesVolume.intValue() > 0) {
			dc.add(Restrictions.le("salesVolume", toSalesVolume));
		}
		return dc;
	}
3.Service层就是将DAOImpl层的数据封装成一个Pager类供Controller使用


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值