beginner项目

简介:

Dao层代码:

public Serializable add(Object entity) {
  return this.getHibernateTemplate().save(entity);
 }

不管什么异常,只要你catch了,spring就会放弃经管。

Session session = this.getHibernateTemplate().getSessionFactory().openSession()/buildSession()/getCurrentSession();
  Transaction tx = session.beginTransaction();
  tx.begin();
  try {
   for (Object o : entity){
    session.save(o);
   }
   tx.commit();
  } catch (Exception e) {
   e.printStackTrace();
   tx.rollback();
  }
  session.close();

 

<listener> 	
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
 

</context-param>


本文转自农夫山泉别墅博客园博客,原文链接:http://www.cnblogs.com/yaowen/archive/2013/02/26/2933101.html,如需转载请自行联系原作者

相关文章
《Modern CMake》读书笔记2
《Modern CMake》读书笔记2
244 0
|
并行计算 Ubuntu 编译器
《Modern CMake》读书笔记
《Modern CMake》读书笔记
458 0
|
BI Windows 内存技术

热门文章

最新文章