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

📄 attachmentdaohibernateimpl.java

📁 新技术论坛系统 v1.0 前后台管理的初始用户名 : admin 密码 123456
💻 JAVA
字号:
package com.ntsky.bbs.dao.hibernate;

import java.sql.SQLException;
import java.util.Collection;
import java.util.List;

import org.hibernate.HibernateException;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.criterion.DetachedCriteria;
import org.hibernate.criterion.Restrictions;
import org.springframework.dao.DataAccessException;
import org.springframework.orm.hibernate3.HibernateCallback;

import com.ntsky.bbs.domain.Attachment;
import com.ntsky.bbs.dao.AttachmentDAO;
import com.ntsky.bbs.exception.DAOException;
import com.ntsky.bbs.exception.ServiceException;
import com.ntsky.bbs.util.page.Pagination;
import com.ntsky.bbs.util.page.QueryResult;

/**
 * 帮助信息Hibernate数据处理实现 
 * 
 * @author ntsky
 * @link www.ntsky.com
 * 
 * @version $Revision: 1.7 $ $Date: 2006/08/07 17:39:06 $
 */
public class AttachmentDAOHibernateImpl extends BaseDAOHibernateImpl implements AttachmentDAO {

	/**
	 * 根据附件编号查找的附件信息
	 * @param attachmentId 附件编号
	 * @return Attachment 附件信息
	 */	
	public Attachment findAttachment(int attachmentId) {
		try {
			return  (Attachment)super.load(Attachment.class,new Long(attachmentId));
		}
		catch(DAOException de){
			throw new DAOException("查找附件信息发生错误...");
		}
	}
	
	/**
	 * 根据编号删除附件信息
	 *
	 * @param attachmentId 附件编号
	 */
	public void deleteAttachment(int attachmentId){
		try{
			super.executeHsql("delete from Attachment where id='"+ attachmentId +"'");
		}
		catch(DAOException de){
			throw new DAOException("删除附件信息发生错误...");
		}
	}
	
	/**
	 * 取得制定用户的附件列表
	 * 
	 * @param userId 用户编号
	 * @param filetype 文件类型
	 * @param pagination 分页对象
	 * @return QueryResult 论坛贴子列表
	 * @throws DAOException
	 */
	public QueryResult findAttachments(int userId,String filetype,Pagination pagination) throws DAOException {
		try{
			DetachedCriteria detachedCriteria = DetachedCriteria.forClass(Attachment.class); 
			detachedCriteria.add(Restrictions.eq("userId",new Integer(userId)));
			if( filetype != null ){
				if(logger.isDebugEnabled()){
					logger.debug("您列表的附件类型为 : " + filetype);
				}
				detachedCriteria.add(Restrictions.eq("filetype",filetype));
			}
			return super.findItemsByCriteria(detachedCriteria,null,pagination);
		}
		catch(DAOException de){
			throw new DAOException("删除附件信息发生错误...");
		}
	}
	
	/**
	 * 更新下载次数
	 * @param attId 附件编号
	 * @throws ServiceException
	 */
	public void updateDownloadTimes(int attId) throws DAOException{
		try{
			super.executeHsql("update Attachment set downloadTimes=downloadTimes+1 where id="+attId);
		}
		catch(DAOException de){
			throw new DAOException("删除附件信息发生错误...");
		}		
	}
	
	
}

⌨️ 快捷键说明

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