码迷,mamicode.com
首页 > 编程语言 > 详细

hibernateTemplate不建议在Spring与Hibernate整合中使用

时间:2014-08-05 18:52:19      阅读:512      评论:0      收藏:0      [点我收藏+]

标签:style   color   使用   os   io   cti   spring   return   

HibernateTemplate类属于spring框架中的类 :org.springframework.orm.hibernate3.HibernateTemplate

HibernateTemplate类目前Hibernate4不支持此类,只支持到Hibernate3,而且在SH整合过程中,如果DaoImpl采用Hibernate实现方法,如果采用Hibernate原声的SessionFactory,即使不采用Spring,原声的SessionFaction同样可以使用,将有利于Dao是可以移植性; 而若果采用HibernateTemplate,必须要有Hibernate和Spring的环境,这样将影响项目的移植性

 

HibernateDaoSuppert跟HibernateTemplate一样不建议使用,而且在Hibernate4 的时候已经被废除 

 

建议在SH的Dao中使用SessionFactory

package dao;

pubilic  ...DaoImpl implement ...Dao{

  private SessionFactory sessionFactory;

  private Session getSession(){

    return sessionFactory.getCurrentSession();

  }

}

hibernateTemplate不建议在Spring与Hibernate整合中使用,布布扣,bubuko.com

hibernateTemplate不建议在Spring与Hibernate整合中使用

标签:style   color   使用   os   io   cti   spring   return   

原文地址:http://www.cnblogs.com/a757956132/p/3892696.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!