Spring之HibernateTemplate 和HibernateDaoSupport

spring提供访问数据库的有三种方式:

 

HibernateDaoSupport

HibernateTemplate(推荐使用)

jdbcTemplate(我们一般不用)

 

类所在包:

HibernateTemplate:org.springframework.orm.hibernate3.HibernateTemplate

HibernateDaoSupport:org.springframework.orm.hibernate3.support.HibernateDaoSupport

 

       spring如果想整合hibernate的话,首先就应该获得SessionFactory这个类,然后再通过获得session就可以进行访问数据库了,即spring提供的类HibernateDaoSupport,HibernateTemplate应该是有setSessionFactory,在使用的时候注入一下就可以了。HibernateTemplate类中的方法是spring封装了hibernate中的方法,在使用完了以后会自动释放session。而如果使用了HibernateDaoSupport的getSession方法,就需要配套的用releaseSession(Session session)或者session.close来关闭session,无法实现自动管理session。所以很多人都倾向于用spring的 Hibernatetemplate类或者HibernateDaoSupport的getHibernateTemplate方法来实现实现数据库的交互,当然,如果遇到hibernatetemplate无法实现的功能,可以使用 HibernateDaoSupport。

 

首先我们先来看一下HibernateTemplate类:

首先我们来说一下我们为什么要用HibernateTemplate,其实这个类就是我们平常使用hibernate进行dao操作的一个模版,我们不需要那些开头的开启事务、获得session,结尾的提交事务,关闭session等操作了,这些工作是HibernateTemplate都给我们封装好了,我们直接调用其dao的操作方法就可以了,并且他还给我们封装了hibernate的几乎所有的异常,这样我们在处理异常的时候就不要记住那么多繁琐的异常了。所以我们就叫他是一个hibernate中dao操作的模版,他提供的常用方法:


get 从数据库相关表中获取一条记录并封装返回一个对象(Object) 
load 作用与get基本相同,不过只有在对该对象的数据实际调用时,才会去查询数据库 
save 添加记录 
saveOrUpdate 判断相应记录是否已存在,据此进行添加或修改记录
update 修改记录 
delete 删除记录  

 

下面我们来看一下HibernateTemplate的源码来看一下他的具体方法是怎么样实现的,其实你观察源码可以发现,他所提供的方法几乎都是一个实现实现的。下面我们就以save方法来具体看一下:

 

 

[java] view plaincopyprint?
  1. public Serializable save(final Object entity) throws DataAccessException {  
  2. return (Serializable) executeWithNativeSession(new HibernateCallback() {  
  3. public Object doInHibernate(Session session) throws HibernateException {  
  4. checkWriteOperationAllowed(session);  
  5. return session.save(entity);  
  6. }  
  7. });}  



 

       我们从源码中可以发现,HibernateTemplate把我们hibernate的异常都封装成了一个DataAccessException 。好了,解释一下上面的代码,上面代码中主要是调用了executeWithNativeSession这个方法,其实这个方法就是给我们封装好的hibernate开头和结尾一些列操作,他需要一个参数,这个参数是一个回调的对象,其实这个对象是实现了一个HibernateCallback的接口,实现这个接口需要实现这个接口里面的方法doInHibernate,这个方法需要把当前的session传递过来,其实他就是把他原先模版里获得的session传过去。然后在在doInHibernate中利用模版中得到的session进行保存数据。其实我们调用save的过程就是给他传一个回调对象的过程,我们可以看到,他的回调对象是new出来的。

 

     如果你还没看懂的话,那大家来看一下下面我们实现自己的HibernateTemplate,他的思路和spring提供的基本是一样的:其中MyHibernateCallback 是一个简单接口:

 

[java] view plaincopyprint?
  1. import org.hibernate.Session;  
  2. public class MyHibernateTemplate {  
  3. public void executeWithNativeSession(MyHibernateCallback callback) {  
  4. Session s = null;  
  5. try {  
  6. s = getSession();  
  7. s.beginTransaction();  
  8. callback.doInHibernate(s);  
  9. s.getTransaction().commit();  
  10. catch (Exception e) {  
  11. s.getTransaction().rollback();  
  12. finally {  
  13. //...  
  14. }  
  15. }  
  16. private Session getSession() {  
  17. // TODO Auto-generated method stub  
  18. return null;  
  19. }  
  20. public void save(final Object o) {  
  21. new MyHibernateTemplate().executeWithNativeSession(new MyHibernateCallback() {  
  22. public void doInHibernate(Session s) {  
  23. s.save(o);  
  24. }  
  25. });  
  26. }  
  27. }  



 

 

    好了,原理我们介绍完了之后,下面我们来看一下具体应用,这个HibernateTemplate在我们的程序中怎么用,在上面我们也说过了,这个用法主要是把sessionfactory注入给我们的HibernateTemplate

首先我们来看一下beans.xml的配置:

 

 

[html] view plaincopyprint?
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  4. xmlns:context="http://www.springframework.org/schema/context"  
  5. xmlns:aop="http://www.springframework.org/schema/aop"  
  6. xmlns:tx="http://www.springframework.org/schema/tx"  
  7. xsi:schemaLocation="http://www.springframework.org/schema/beans  
  8.            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd  
  9.            http://www.springframework.org/schema/context  
  10.            http://www.springframework.org/schema/context/spring-context-2.5.xsd  
  11.            http://www.springframework.org/schema/aop  
  12.            http://www.springframework.org/schema/aop/spring-aop-2.5.xsd  
  13.            http://www.springframework.org/schema/tx   
  14.            http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">  
  15. <bean id="dataSource"  
  16. class="org.apache.commons.dbcp.BasicDataSource"  
  17. destroy-method="close">  
  18. <property name="driverClassName" value="com.mysql.jdbc.Driver" />  
  19. <property name="url" value="jdbc:mysql://localhost:3306/spring" />  
  20. <property name="username" value="root" />  
  21. <property name="password" value="bjsxt" />  
  22. </bean>  
  23. <bean id="sessionFactory"  
  24. class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">  
  25. <property name="dataSource" ref="dataSource" />  
  26. <property name="annotatedClasses">  
  27. <list>  
  28. <value>com.bjsxt.model.User</value>  
  29. <value>com.bjsxt.model.Log</value>  
  30. </list>  
  31. </property>  
  32. <property name="hibernateProperties">  
  33. <props>  
  34. <prop key="hibernate.dialect">  
  35. org.hibernate.dialect.MySQLDialect  
  36. </prop>  
  37. <prop key="hibernate.show_sql">true</prop>  
  38. </props>  
  39. </property>  
  40. </bean>  
  41. <bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">  
  42. <property name="sessionFactory" ref="sessionFactory"></property>  
  43. </bean>  
  44. <bean id="UserDao" class="com.bzu.dao.userDao">  
  45. <property name="hibernateTemplate" ref="hibernateTemplate"></property>  
  46. </bean>  
  47. </beans>  



 

下一步我们来看一下hibernateTemplate的使用:

 

[html] view plaincopyprint?
  1. public class UserDAOImpl implements UserDAO {  
  2. private HibernateTemplate hibernateTemplate;  
  3. public HibernateTemplate getHibernateTemplate() {  
  4. return hibernateTemplate;  
  5. }  
  6. public void setHibernateTemplate(HibernateTemplate hibernateTemplate) {  
  7. this.hibernateTemplate = hibernateTemplate;  
  8. }  
  9. public void save(User user) {  
  10. hibernateTemplate.save(user);  
  11. }}  



 

这基本上就是我们的hibernateTemplate原理及使用了,其实他的使用很简单

 

下面,我们来看一下HibernateDaoSupport:

通过上面我们可以看出,通过xml注入hibernateTemplate,我们可以想象的到所有DAO类中都会有HibernateTemplate的bean方法,于是上面hibernateTemplate的set、get的方法和xml配置会有大量的,于是就出现了代码冗余和重复,我们怎么才能避免这个重复呢,我们很容易应该能想到,把上面注入hibernateTemplate抽出一个类,然后让我们的dao类来继承这个类。不过这个类Spring已经有了,那就是HibernateDaoSupport,除此之外,HibernateDaoSupport也有SessionFactory的bean方法,所以我们在用HibernateDaoSupport的时候同样也要给我们注入sessionfactory或者hibernateTemplate,在用的时候你会发现HibernateDaoSupport也给我们提供了getHibernateDaoSupport方法。

相关配置示例:userdao继承了HibernateDaoSupport

 

 

[html] view plaincopyprint?
  1. <bean id="userdao" class="com.bzu.dao.uerdao">  
  2. <property name="sessionFactory" ref="sessionFactory"></property>  
  3. </bean>  



 

 

     用上面的方法我们可以发现一个问题,我们同样解决不了xml配置重复的问题,我们每一个dao都要在xml注入sessionfactory或者hibernateTemplate,解决这个问题的办法就是我们自己在抽出一个SuperDao类,让这个类去继承HibernateDaoSupport,然后我们给SuperDao类去配置,这样的话,我们在我的dao类中直接去继承SuperDao类就可以了,这样不管有多少dao类,只要继承SuperDao,我们就可以实现我们想要的功能了。

转载于:https://www.cnblogs.com/dengjiali/articles/3598637.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/377262.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

JDOJ-重建二叉树

这是一道面试题&#xff0c;可以说是数据结构中的基础题了&#xff0c;由先序遍历以及中序遍历生成一棵树&#xff0c;然后输出后序遍历。 一个递归函数传递5个参数&#xff0c;顶点编号&#xff0c;先序左右区间&#xff0c;中序左右区间&#xff0c;每次进行区间长度判定&…

des算法密码多长_密码学中的多个DES

des算法密码多长This is a DES that was susceptible to attacks due to tremendous advances in computer hardware in cryptography. Hence, it was a very complex or competent algorithm it would be feasible to reuse DES rather than writing an of cryptography. 由于…

《MySQL——索引笔记》

目录回表覆盖索引最左前缀原则联合索引的时候&#xff0c;如何安排索引内的字段顺序&#xff1f;索引下推重建索引问题联合主键索引和 InnoDB 索引组织表问题in与between的区别回表 回到主键索引树搜索的过程&#xff0c;我们称为回表。 覆盖索引 覆盖索引就是在这次的查询中…

计算凸多边形面积的算法

1. 思路&#xff1a; 可以将凸多边形&#xff08;边数n > 3&#xff09;划分为 (n - 2) 个三角形&#xff0c;分别运用向量叉积计算每个三角形的面积&#xff0c;最后累加各个三角形的面积就是多边形的面积。 2. 求多边形面积的算法模板&#xff1a;   定义点的结构体 str…

Windows CE开发常见问题解答

转自&#xff1a; http://blog.csdn.net/slyzhang/article/details/6110490 1.怎样在一个控件获得焦点时打开软键盘&#xff1f;比如一个EditBox获得焦点后&#xff0c;这个时候自动打开软键盘&#xff0c;这样可以方便用户输入——SIPINFO、SHSIPINFO、SIPSETINFO、SIPGETINFO…

Julia中的supertype()函数

Julia| supertype()函数 (Julia | supertype() function) supertype() function is a library function in Julia programming language, it is used to get the concrete supertype of the given type (data type). supertype()函数是Julia编程语言中的库函数&#xff0c;用于…

《操作系统知识点整理》

目录进程与线程比较多线程同步与互斥生产者与消费者哲学家就餐问题读者写者问题进程间通信管道消息队列共享内存信号量信号Socket锁互斥锁与自旋锁读写锁乐观锁与悲观锁死锁进程与线程比较 进程是资源&#xff08;包括内存、打开的文件等&#xff09;分配的单位&#xff0c;线…

for,foreach,iterator的用法和区别

相同点&#xff1a; 三个都可以用来遍历数组和集合不同点&#xff1a;1.形式差别 for的形式是 for&#xff08;int i0;i<arr.size();i&#xff09;{...} foreach的形式是 for&#xff08;int i&…

和菜鸟一起学linux总线驱动之初识spi驱动主要结构

既然知道了协议了&#xff0c;那么就可以开始去瞧瞧linux kenerl中的spi的驱动代码了&#xff0c;代码中有很多的结构体&#xff0c;还是对主要的结构体先做个了解吧&#xff0c;那样才可以很好的理解驱动。主要是include/linux/spi.h 首先是SPI的主机和从机通信接口&#xff0…

操作系统大内核和微内核_操作系统中的内核

操作系统大内核和微内核A Kernel is the central component of an Operating System. The Kernel is also said to be the heart of the Operating System. It is responsible for managing all the processes, memory, files, etc. The Kernel functions at the lowest level …

《MySQL——锁》

全局锁是什么&#xff1f;全局锁有什么用&#xff1f;全局锁怎么用&#xff1f; 全局锁主要用在逻辑备份过程中&#xff0c;对于InnoDB 引擎的库&#xff0c;使用–single-transaction; MySQL 提供了一个加全局读锁的方法&#xff0c;命令是 Flush tables with read lock (FTW…

搜索引擎Constellio及Google Search Appliances connectors

做搜索产品的时候发现国外一个同类型的产品contellio&#xff0c;发现功能比较强大&#xff0c;先记录下来 貌似可以添加文档 网站 以及数据库等不同类型的数据源 http://wiki.constellio.com/index.php/Main_Page http://www.constellio.com/ http://www.constellio.com htt…

dig下载_DIG的完整形式是什么?

dig下载DIG&#xff1a;副监察长 (DIG: Deputy Inspector General) DIG is an abbreviation of the Deputy Inspector General. It is a high-level position in the Indian Police Service. The officers who already offered service on Senior Superintendent of Police (SS…

分类器是如何做检测的?——CascadeClassifier中的detectMultiScale函数解读

原地址&#xff1a;http://blog.csdn.net/delltdk/article/details/9186875 在进入detectMultiScal函数之前&#xff0c;首先需要对CascadeClassifier做初始化。 1. 初始化——read函数 CascadeClassifier的初始化很简单&#xff1a; cv::CascadeClassifier classifier; cl…

<MySQL>何时使用普通索引,何时使用唯一索引

如果能够保证业务代码不会写入重复数据&#xff0c;就可以继续往下看。 如果业务不能保证&#xff0c;那么必须创建唯一索引。 关于查询能力 普通索引和唯一索引在查询能力上是没有很大差别的。 如&#xff1a;select id from T where k5 1、普通索引查找到满足条件的第一个记…

Web版OutLook,利用POP接收邮件服务器邮件

一直想做一个Web版的OutLook&#xff0c;所以才萌生这个想法&#xff0c;其实以前也接触过这方面的东西。于是上网找了找&#xff0c;漫天的都是Jmail来接收&#xff0c;好吧&#xff0c;既然大家都在用我也就下载下来试试了。 什么&#xff0c;怎么总是报错呢&#xff1f;原来…

abs std::abs_ABS的完整形式是什么?

abs std::absABS&#xff1a;防抱死制动系统 (ABS: Anti-lock Braking System) ABS is an abbreviation of the Anti-lock Braking System. It is a safety anti-skid braking system that is used on a variety of aircraft, automobiles and other land vehicles, such as mo…

ubuntu 使用

shell 命令历史搜索 &#xff1a; ctrl r使能 session 选择界面&#xff1a;安装gnome-session-fallback安装lwqq转载于:https://www.cnblogs.com/JonnyLulu/p/3600263.html

汉字速查使用方法简介

《汉字速查》&#xff08;HanziSearcher&#xff09;是一个支持全汉字字典和词典的检索工具。其界面如下所示。 界面上方为工具栏。 左方为字典和词典检索栏。 右方在启动时显示版权信息和作者的联系方式&#xff0c;在执行检索时&#xff0c;显示检索结果。 检索方法 汉字速查…

android jni示例_Android服务示例

android jni示例A service is a component that runs in the background for supporting different types of operations that are long running. The user is not interacted with these. These perform task even if application is destroyed. Examples include handling of…