`

hibernateDAOimpl

阅读更多

/*******************************************************************************
  ******************************************************************************/

import java.util.List;
import java.util.Iterator;
import java.sql.Connection;
import javax.sql.DataSource;

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

import com.insigma.common.util.InsigmaException;
import com.opensource.log.NewLogger;

import java.sql.SQLException;
import java.sql.Statement;

public class HibernateDaoImpl extends HibernateDaoSupport implements
  HibernateBaseDao {
 /** 注入的数据源 **/
 protected DataSource dataSource;

 public void setDataSource(DataSource dataSource) {
  this.dataSource = dataSource;
 }

 public DataSource getDataSource() {
  return this.dataSource;
 }

 public HibernateDaoImpl() {
 }

 /**
  * 存储对象
  */
 public void save(Object obj) throws InsigmaException {
  save(new Object[] { obj });
 }

 /**
  * 存储对象数组
  */
 public void save(Object[] obj) throws InsigmaException {
  for (int i = 0; i < obj.length; i++) {
   if (obj[i] == null)
    throw new InsigmaException("存储对象出错,对象为空!\n");
   getHibernateTemplate().save(obj[i]);
  }
  getHibernateTemplate().flush();
 }

 /**
  * 批量存储对象
  */
 public void save(List obj) throws InsigmaException {
  for (int i = 0; i < obj.size(); i++) {
   if (obj.get(i) == null)
    throw new InsigmaException("批量存储对象出错,对象为空!\n");
   getHibernateTemplate().save(obj.get(i));
  }
  getHibernateTemplate().flush();

 }

 /**
  * 批量更新对象
  */
 public void update(List obj) throws InsigmaException {
  for (int i = 0; i < obj.size(); i++) {
   if (obj.get(i) == null)
    throw new InsigmaException("更新对象出错,对象为空!\n");
   getHibernateTemplate().saveOrUpdate(obj.get(i));

  }
  getHibernateTemplate().flush();
 }

 /**
  * 更新对象数组
  */
 public void update(Object[] obj) throws InsigmaException {
  for (int i = 0; i < obj.length; i++) {
   if (obj[i] == null)
    throw new InsigmaException("更新对象出错,对象为空!\n");
   getHibernateTemplate().update(obj[i]);
  }
  getHibernateTemplate().flush();
 }

 /**
  * 更新对象
  */
 public void update(Object obj) throws InsigmaException {
  update(new Object[] { obj });
 }

 /**
  * 执行预处理HQL,如update tab1 set name=?,value=? where id=12
  * 则list的对象为"zhang","qing"
  */
 public void exeHQL(String hql, List list) throws InsigmaException {
  Session ses = getSession();
  try {
   Query query = ses.createQuery(hql);
   Object obj = null;
   for (int i = 0; i < list.size(); i++) {
    obj = list.get(i);
    query.setParameter(i, obj);
   }
   query.executeUpdate();
  } catch (Exception e) {
   NewLogger.getInstance().writeError("执行预处理HQL出错!\n"+e.getMessage(), e);
   throw new InsigmaException(e.getMessage(), e);
  } finally {
   releaseSession(ses);
  }

 }

 /**
  * 执行批量事务,先存储,后更新/删除
  */
 public void exeHQL(Object obj, List list) throws InsigmaException {
  if (obj != null)
   save(obj);
  exeHQL(list);
 }

 /**
  * 先存储对象数据,再执行更新或删除,批量事务执行
  */
 public void exeHQL(Object[] obj, List list) throws InsigmaException {
  if (obj != null)
   save(obj);
  exeHQL(list);
 }

 /**
  * 执行更新或删除HQL语句
  */
 public void exeHQL(String hql) throws InsigmaException {
  Session ses = getSession();
//  try {
   Query query = ses.createQuery(hql);
   query.executeUpdate();
//  } catch (Exception e) {
//   NewLogger.getInstance().writeError("执行更新或删除HQL语句出错!\n"+e.getMessage(), e);
//   throw new InsigmaException(e.getMessage(), e);
//  }
//  finally {
//   releaseSession(ses);
//  }

 }

 /**
  * 执行更新或删除HQL语句
  */
 public void exeHQL(List hql) throws InsigmaException {
  Session ses = getSession();
//  try {
   String sql;
   for (Iterator<String> it = hql.iterator(); it.hasNext();) {
    sql = it.next();
    NewLogger.getInstance().writeDebug(sql);
    Query qr = ses.createQuery(sql);
    qr.executeUpdate();
   }
//  } catch (Exception e) {
//   NewLogger.getInstance().writeError("批量更新或删除出错!"+e.getMessage(), e);
//   throw new InsigmaException(e.getMessage(), e);
//  } finally {
//   releaseSession(ses);
//  }

 }

 /**
  * 查询HQL语句
  */
 public List findObjs(String HQL) throws InsigmaException {
  List list = null;
//  try {
   list = getHibernateTemplate().find(HQL);
//  } catch (DataAccessException e) {
//   NewLogger.getInstance().writeError("查询HQL出错!\n" + e.getMessage(), e);
//   throw new InsigmaException(e.getMessage(), e);
//  }
  return list;

 }

 /**
  * 预编译查询HQL
  */
 public List findObjs(String hql, Object[]prams) throws InsigmaException {
  List reList = null;
//  try {
   reList = getHibernateTemplate().find(hql, prams);
//  } catch (DataAccessException e) {
//   NewLogger.getInstance().writeError("预编译查询HQL出错!\n" + e.getMessage(), e);
//   throw new InsigmaException(e.getMessage(), e);
//  }
  return reList;

 }

 /*
  * 分页查询HQL
  *
  * @
  *
  * @see com.insigma.common.dao.HibernateBaseDao#findObjs(java.lang.String,
  * int, int)
  */
 /**
  * 分页查询HQL
  *
  * @param hql
  *            hql语句
  * @param pageFirst
  *            第几页
  * @param pageRow
  *            每页多少行
  */
 public List findObjs(String hql, int pageFirst, int pageRow)
   throws InsigmaException {
  List list = null;
  Session ses = getSession();
//  try {
   Query qr = ses.createQuery(hql);
   qr.setReadOnly(true);
   qr.setFirstResult((pageFirst - 1) * pageRow);
   qr.setMaxResults(pageRow);
   list = qr.list();
//  } catch (DataAccessException e) {
//   e.printStackTrace();
//   throw new InsigmaException("分页查询出错!\n" + e.getMessage(), e);
//  }
//
//  finally {
//   releaseSession(ses);
//  }
  return list;

 }

 /**
  * 存储并执行HQL
  */
 public void saveObjAndExeHql(List hql, List obj) throws InsigmaException {
  String sql;
  Session ses = getSession();
//  try {
   for (Iterator it = hql.iterator(); it.hasNext();) {
    sql = (String) it.next();
    Query qr = ses.createQuery(sql);
    qr.executeUpdate();
   }
   Object object;
   for (Iterator it = obj.iterator(); it.hasNext();) {
    object = it.next();
    getSession().save(object);
   }
//  } catch (Exception e) {
//   e.printStackTrace();
//   throw new InsigmaException("存储并执行HQL时出错!\n" + e.getMessage(), e);
//  }

//  finally {
//   releaseSession(ses);
//  }

 }

 /**
  * 查询共计记录数
  */
 public int getMaxRow(final String hql) throws InsigmaException {
  int maxRow = (Integer)getHibernateTemplate().execute(new HibernateCallback(){
    public Object doInHibernate(Session session)
      throws HibernateException, SQLException {
     Query qr = getSession().createQuery(hql);
     List list = qr.list();
     int maxRow = 0;
     if (list.size() > 0) {
      String s = String.valueOf(list.get(0));
      if ((s == null) || (s.equals("")))
       s = "0";
      maxRow = Integer.parseInt(s);// ((Integer)
      
     }
     return new Integer(maxRow);
    }
   });
  return maxRow;

 }

 /**
  * 得到数据源连接
  */
 public Connection getConnection() throws InsigmaException {
  Connection con = null;
//  try {
   con = getSession().connection();
//  } catch (Exception e) {
//   e.printStackTrace();
//   throw new InsigmaException("得到数据源连接时出错!\n" + e.getMessage(), e);
//  }
  return con;

 }

 /**
  * 关闭数据源连接
  */
 public void closeConnection() throws InsigmaException {
  Connection con = null;
  try {
   con = getDataSource().getConnection();
   if (con != null) {
    con.close();
   }
  } catch (SQLException e) {
//   e.printStackTrace();
   throw new InsigmaException("关闭数据源连接时出错!\n" + e.getMessage(), e);
  }

 }

 /**
  * 得到Hibernate的Session
  *
  * @return Session
  */
 public Session getHSession() throws InsigmaException {
  Session s = getHibernateTemplate().getSessionFactory().openSession();
  return s;
 }

 /**
  * 关闭Hibernate的Session
  *
  * @param s
  *            Session
  * @throws InsigmaException
  */
 public void closeHSession(Session s) throws InsigmaException {
  if (s != null) {
   s.close();
  }
 }

 /**
  * 关闭输入的连接
  */
 public void closeConnection(Connection conn) throws InsigmaException {

  try {

   if (conn != null) {
    conn.close();
   }
  } catch (SQLException e) {
//   e.printStackTrace();
   throw new InsigmaException("关闭连接时出错!\n" + e.getMessage(), e);
  }

 }

 /**
  * 执行存储过程
  *
  * @param proc
  *            如:
  */
 public void runProc(String proc) throws InsigmaException {
  Connection conn = null;
  Statement st = null;
  Session ses = getSession();
  try {
   conn = ses.connection();
   st = conn.createStatement();
   st.execute("{call " + proc + "}");
  } catch (Exception e) {
//   e.printStackTrace();
   throw new InsigmaException("执行存储过程时出错!\n" + e.getMessage(), e);
  } finally {
   try {
    if (st != null) {
     st.close();
    }
    if (conn != null) {
     conn.close();
    }
    releaseSession(ses);
   } catch (SQLException e) {
//    e.printStackTrace();
    throw new InsigmaException("关闭数据连接出错!\n" + e.getMessage(), e);
   }
  }
 }

  public Object load(String hql) throws InsigmaException {
    Session ses = getSession();
    Query q = ses.createQuery(hql);
    return q.uniqueResult();
  }

 /* (non-Javadoc)
  * @see com.insigma.common.dao.HibernateBaseDao#findObjs(org.hibernate.criterion.DetachedCriteria)
  */
 public List findObjs(DetachedCriteria criteria) throws InsigmaException {
  // TODO Auto-generated method stub
  List list = getHibernateTemplate().findByCriteria(criteria);
  return list;
 }

 /* (non-Javadoc)
  * @see com.insigma.common.dao.HibernateBaseDao#findObjs(org.hibernate.criterion.DetachedCriteria, int, int)
  */
 public List findObjs(DetachedCriteria criteria, int first, int max)
   throws InsigmaException {
  // TODO Auto-generated method stub
  List list = getHibernateTemplate().findByCriteria(criteria, first, max);
  return list;
 }
}

分享到:
评论

相关推荐

    Hibernate的通用dao

    3. **方法实现**:在`HibernateDaoImpl&lt;T&gt;`中,为`BaseDao&lt;T&gt;`接口中的每个方法提供具体实现,例如`save()`使用`session.save()`或`session.saveOrUpdate()`,`findById()`使用`session.get()`,`update()`使用`...

    _CXF学习高级篇2.doc

    public class HibernateDaoImpl extends HibernateDaoSupport implements HibernateDao { // CRUD方法的具体实现 ... } ``` 在这个实现类中,每个方法都直接调用了`getHibernateTemplate()`提供的便捷方法来执行...

    Spring/泛型Hibernate的实现

    public class HibernateDaoImpl, PK extends Serializable&gt; implements IHibernateDao, PK&gt; { private HibernateTemplate hibernateTemplate; public void setHibernateTemplate(HibernateTemplate ...

    前端-后端java的Util类的工具类

    │ HibernateDaoImpl.java │ HibernateSessionFactory.java │ HibernateUtil.java │ JsonUtil.java │ list.txt │ log4j.properties │ messageResource_zh_CN.properties │ spring.xml │ struts.xml │ ├─...

    基于net的超市管理系统源代码(完整前后端+sqlserver+说明文档+LW).zip

    功能说明: 环境说明: 开发软件:VS 2017 (版本2017以上即可,不能低于2017) 数据库:SqlServer2008r2(数据库版本无限制,都可以导入) 开发模式:mvc。。。

    LABVIEW程序实例-公式节点.zip

    labview程序代码参考学习使用,希望对你有所帮助。

    大米商城开源版damishop(适合外贸)

    大米外贸商城系统 简称damishop 完全开源版,只需做一种语言一键开启全球133中语言自动翻译功能,价格实现自动汇率转换,集成微信支付宝 paypal以及国外主流支付方式,自带文章博客系统。 软件架构 基于MVC+语言包模式,增加控制台,API导入产品方便对接其他系统(带json示例数据)。 使用要求 PHP7.4+ MYSQL5.6+ REDIS(可选) 安装方法 composer install 打开安装向导安装 http://您的域名/install 特色 1、缓存层增加时间与批量like删除 2、API产品导入方便对接其他系统 3、增加控制台命令行,命令行生成语言翻译包 4、后台一键开启自动翻译模式,支持全球133中语言,由于google代理翻译需要收费,这个功能需要付费。 5、可选购物车与ajax修改购物车产品 6、一键结算checkout 7、增加网站前台自定义路由 方便seo 更新日志 v3.9.7 集成鱼码支付接口,方便个人站长即使收款到账使用 v3.9.3 更新内容 1:增加ueditor与旧编辑器切换 2:增加可视化布局插

    LABVIEW程序实例-通过全局变量接收数据.zip

    labview程序代码参考学习使用,希望对你有所帮助。

    LABVIEW程序实例-日历控件.zip

    labview程序代码参考学习使用,希望对你有所帮助。

Global site tag (gtag.js) - Google Analytics