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

📄 itemdao.java

📁 基于ssh2的三者整合
💻 JAVA
字号:
package com.lixineng.dao;

import java.util.Date;
import java.util.List;
import java.util.Set;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hibernate.LockMode;
import org.springframework.context.ApplicationContext;
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;

/**
 * A data access object (DAO) providing persistence and search support for Item
 * entities. Transaction control of the save(), update() and delete() operations
 * can directly support Spring container-managed transactions or they can be
 * augmented to handle user-managed Spring transactions. Each of these methods
 * provides additional information for how to configure it for the desired type
 * of transaction control.
 * 
 * @see com.lixineng.dao.Item
 * @author MyEclipse Persistence Tools
 */

public class ItemDAO extends HibernateDaoSupport {
	private static final Log log = LogFactory.getLog(ItemDAO.class);
	// property constants
	public static final String ITEM_NAME = "itemName";
	public static final String ITEM_REMARK = "itemRemark";
	public static final String ITEM_DESC = "itemDesc";
	public static final String INIT_PRICE = "initPrice";
	public static final String MAX_PRICE = "maxPrice";

	protected void initDao() {
		// do nothing
	}

	public void save(Item transientInstance) {
		log.debug("saving Item instance");
		try {
			getHibernateTemplate().save(transientInstance);
			log.debug("save successful");
		} catch (RuntimeException re) {
			log.error("save failed", re);
			throw re;
		}
	}

	public void delete(Item persistentInstance) {
		log.debug("deleting Item instance");
		try {
			getHibernateTemplate().delete(persistentInstance);
			log.debug("delete successful");
		} catch (RuntimeException re) {
			log.error("delete failed", re);
			throw re;
		}
	}

	public Item findById(java.lang.Integer id) {
		log.debug("getting Item instance with id: " + id);
		try {
			Item instance = (Item) getHibernateTemplate().get(
					"com.lixineng.dao.Item", id);
			return instance;
		} catch (RuntimeException re) {
			log.error("get failed", re);
			throw re;
		}
	}

	public List findByExample(Item instance) {
		log.debug("finding Item instance by example");
		try {
			List results = getHibernateTemplate().findByExample(instance);
			log.debug("find by example successful, result size: "
					+ results.size());
			return results;
		} catch (RuntimeException re) {
			log.error("find by example failed", re);
			throw re;
		}
	}

	public List findByProperty(String propertyName, Object value) {
		log.debug("finding Item instance with property: " + propertyName
				+ ", value: " + value);
		try {
			String queryString = "from Item as model where model."
					+ propertyName + "= ?";
			return getHibernateTemplate().find(queryString, value);
		} catch (RuntimeException re) {
			log.error("find by property name failed", re);
			throw re;
		}
	}

	public List findByItemName(Object itemName) {
		return findByProperty(ITEM_NAME, itemName);
	}

	public List findByItemRemark(Object itemRemark) {
		return findByProperty(ITEM_REMARK, itemRemark);
	}

	public List findByItemDesc(Object itemDesc) {
		return findByProperty(ITEM_DESC, itemDesc);
	}

	public List findByInitPrice(Object initPrice) {
		return findByProperty(INIT_PRICE, initPrice);
	}

	public List findByMaxPrice(Object maxPrice) {
		return findByProperty(MAX_PRICE, maxPrice);
	}

	public List findAll() {
		log.debug("finding all Item instances");
		try {
			String queryString = "from Item";
			return getHibernateTemplate().find(queryString);
		} catch (RuntimeException re) {
			log.error("find all failed", re);
			throw re;
		}
	}

	public Item merge(Item detachedInstance) {
		log.debug("merging Item instance");
		try {
			Item result = (Item) getHibernateTemplate().merge(detachedInstance);
			log.debug("merge successful");
			return result;
		} catch (RuntimeException re) {
			log.error("merge failed", re);
			throw re;
		}
	}

	public void attachDirty(Item instance) {
		log.debug("attaching dirty Item instance");
		try {
			getHibernateTemplate().saveOrUpdate(instance);
			log.debug("attach successful");
		} catch (RuntimeException re) {
			log.error("attach failed", re);
			throw re;
		}
	}

	public void attachClean(Item instance) {
		log.debug("attaching clean Item instance");
		try {
			getHibernateTemplate().lock(instance, LockMode.NONE);
			log.debug("attach successful");
		} catch (RuntimeException re) {
			log.error("attach failed", re);
			throw re;
		}
	}

	public static ItemDAO getFromApplicationContext(ApplicationContext ctx) {
		return (ItemDAO) ctx.getBean("ItemDAO");
	}
	

	public List<Item> findItemByKind(Integer kindId)
	{
	    return getHibernateTemplate().find("from Item as i where i.kind.id=? and i.state.stateId=1",kindId);  
	}	

	
	public List<Item> findItemByOwer(Integer userId)
	{
	    return getHibernateTemplate().find("from Item as i where i.kind.id=? and i.state.stateId=1",userId);  
	}	

	public List<Item> findItemByWiner(Integer userId)
	{
	    return getHibernateTemplate().find("from Item as i where i.kind.id=? and i.state.stateId=2",userId);  
	}	

	public List<Item> findItemByState(Integer stateId)
	{
	    return getHibernateTemplate().find("from Item as i where i.state.stateId=?", stateId);  
	}	

	  public void update(Item item)
	    {
	        getHibernateTemplate().saveOrUpdate(item);
	    }
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
}

⌨️ 快捷键说明

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