⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 itemdao.java

📁 webwork in action 下载。
💻 JAVA
字号:
/* * Copyright (c) 2004 Manning Publications. All Rights Reserved. */package org.hibernate.auction.dao;import net.sf.hibernate.*;import net.sf.hibernate.expression.Example;import net.sf.hibernate.expression.Expression;import org.hibernate.auction.exceptions.InfrastructureException;import org.hibernate.auction.model.Bid;import org.hibernate.auction.model.Item;import java.util.Collection;import java.util.List;/** * A typical DAO for auction items using Hibernate. * * @author Christian Bauer <christian@hibernate.org> */public class ItemDAO extends AbstractDAO {	// ********************************************************** //	public Item getItemById(Long itemId, boolean lock)			throws InfrastructureException {		Session session = persistenceManager.getSession();		Item item = null;		try {			if (lock) {				item = (Item) session.load(Item.class, itemId, LockMode.UPGRADE);			} else {				item = (Item) session.load(Item.class, itemId);			}		}  catch (HibernateException ex) {			throw new InfrastructureException(ex);		}		return item;	}	// ********************************************************** //	public Bid getMaxBid(Long itemId)			throws InfrastructureException {		Bid maxBidAmount = null;		try {			// Note the creative where-clause subselect expression...			Query q = persistenceManager.getSession().getNamedQuery("maxBid");			q.setLong("itemid", itemId.longValue());			maxBidAmount = (Bid) q.uniqueResult();		}		catch (HibernateException ex) {			throw new InfrastructureException(ex);		}		return maxBidAmount;	}	// ********************************************************** //	public Bid getMinBid(Long itemId)			throws InfrastructureException {		Bid maxBidAmount = null;		try {			// Note the creative where-clause subselect expression..			Query q = persistenceManager.getSession().getNamedQuery("minBid");			q.setLong("itemid", itemId.longValue());			maxBidAmount = (Bid) q.uniqueResult();		}		catch (HibernateException ex) {			throw new InfrastructureException(ex);		}		return maxBidAmount;	}	// ********************************************************** //	public Collection findAll()			throws InfrastructureException {		Collection items;		try {			items = persistenceManager.getSession().createCriteria(Item.class).list();		} catch (HibernateException ex) {			throw new InfrastructureException(ex);		}		return items;	}	// ********************************************************** //	public Collection findByExample(Item exampleItem)			throws InfrastructureException {		Collection items;		try {			Criteria crit = persistenceManager.getSession().createCriteria(Item.class);			items = crit.add(Example.create(exampleItem)).list();		} catch (HibernateException ex) {			throw new InfrastructureException(ex);		}		return items;	}	// ********************************************************** //	public void makePersistent(Item item)			throws InfrastructureException {		try {			persistenceManager.getSession().saveOrUpdate(item);		} catch (HibernateException ex) {			throw new InfrastructureException(ex);		}	}	// ********************************************************** //	public void makeTransient(Item item)			throws InfrastructureException {		try {			persistenceManager.getSession().delete(item);		} catch (HibernateException ex) {			throw new InfrastructureException(ex);		}	}    public List search(String query) {        try {            query = "%" + query + "%";            Criteria crit = persistenceManager.getSession().createCriteria(Item.class);            crit.add(Expression.or(Expression.like("name", query), Expression.like("description", query)));            return crit.list();        } catch (HibernateException e) {            throw new InfrastructureException(e);        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -