前段时间对Spring的事务配置做了比较深入的研究,在此之间对Spring的事务配置虽说也配置过,但是一直没有一个清楚的认识。通过这次的学习发觉Spring的事务配置只要把思路理清,还是比较好掌握的。

总结如下:

Spring配置文件中关于事务配置总是由三个组成部分,分别是DataSource、TransactionManager和代理机制这三部分,无论哪种配置方式,一般变化的只是代理机制这部分。

DataSource、TransactionManager这两部分只是会根据数据访问方式有所变化,比如使用Hibernate进行数据访问时,DataSource实际为SessionFactory,TransactionManager的实现为HibernateTransactionManager。

具体如下图:

根据代理机制的不同,总结了五种Spring事务的配置方式,配置文件如下:

第一种方式:每个Bean都有一个代理

  

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 xsi:schemaLocation="http://www.springframework.org/schema/beans
7 http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
8 http://www.springframework.org/schema/context
9 http://www.springframework.org/schema/context/spring-context-2.5.xsd
10 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
11
12 <bean id="sessionFactory"
13 class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
14 <property name="configLocation" value="classpath:hibernate.cfg.xml" />
15 <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration" />
16 </bean>
17 <!-- 定义事务管理器(声明式的事务) -->
18 <bean id="transactionManager"
19 class="org.springframework.orm.hibernate3.HibernateTransactionManager">
20 <property name="sessionFactory" ref="sessionFactory" />
21 </bean>
22
23 <!-- 配置DAO -->
24 <bean id="userDaoTarget" class="com.bluesky.spring.dao.UserDaoImpl">
25 <property name="sessionFactory" ref="sessionFactory" />
26 </bean>
27
28 <bean id="userDao"
29 class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
30 <!-- 配置事务管理器 -->
31 <property name="transactionManager" ref="transactionManager" />
32 <property name="target" ref="userDaoTarget" />
33 <property name="proxyInterfaces" value="com.bluesky.spring.dao.GeneratorDao" />
34 <!-- 配置事务属性 -->
35 <property name="transactionAttributes">
36 <props>
37 <prop key="*">PROPAGATION_REQUIRED</prop>
38 </props>
39 </property>
40 </bean>
41  </beans>



第二种方式:所有Bean共享一个代理基类

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 xsi:schemaLocation="http://www.springframework.org/schema/beans
7 http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
8 http://www.springframework.org/schema/context
9 http://www.springframework.org/schema/context/spring-context-2.5.xsd
10 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
11
12 <bean id="sessionFactory"
13 class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
14 <property name="configLocation" value="classpath:hibernate.cfg.xml" />
15 <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration" />
16 </bean>
17 <!-- 定义事务管理器(声明式的事务) -->
18 <bean id="transactionManager"
19 class="org.springframework.orm.hibernate3.HibernateTransactionManager">
20 <property name="sessionFactory" ref="sessionFactory" />
21 </bean>
22
23 <bean id="transactionBase"
24 class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean"
25 lazy-init="true" abstract="true">
26 <!-- 配置事务管理器 -->
27 <property name="transactionManager" ref="transactionManager" />
28 <!-- 配置事务属性 -->
29 <property name="transactionAttributes">
30 <props>
31 <prop key="*">PROPAGATION_REQUIRED</prop>
32 </props>
33 </property>
34 </bean>
35
36 <!-- 配置DAO -->
37 <bean id="userDaoTarget" class="com.bluesky.spring.dao.UserDaoImpl">
38 <property name="sessionFactory" ref="sessionFactory" />
39 </bean>
40
41 <bean id="userDao" parent="transactionBase" >
42 <property name="target" ref="userDaoTarget" />
43 </bean>
44  </beans>

    第三种方式:使用拦截器

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 xsi:schemaLocation="http://www.springframework.org/schema/beans
7 http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
8 http://www.springframework.org/schema/context
9 http://www.springframework.org/schema/context/spring-context-2.5.xsd
10 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
11
12 <bean id="sessionFactory"
13 class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
14 <property name="configLocation" value="classpath:hibernate.cfg.xml" />
15 <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration" />
16 </bean>
17 <!-- 定义事务管理器(声明式的事务) -->
18 <bean id="transactionManager"
19 class="org.springframework.orm.hibernate3.HibernateTransactionManager">
20 <property name="sessionFactory" ref="sessionFactory" />
21 </bean>
22
23 <bean id="transactionInterceptor"
24 class="org.springframework.transaction.interceptor.TransactionInterceptor">
25 <property name="transactionManager" ref="transactionManager" />
26 <!-- 配置事务属性 -->
27 <property name="transactionAttributes">
28 <props>
29 <prop key="*">PROPAGATION_REQUIRED</prop>
30 </props>
31 </property>
32 </bean>
33
34 <bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
35 <property name="beanNames">
36 <list>
37 <value>*Dao</value>
38 </list>
39 </property>
40 <property name="interceptorNames">
41 <list>
42 <value>transactionInterceptor</value>
43 </list>
44 </property>
45 </bean>
46
47 <!-- 配置DAO -->
48 <bean id="userDao" class="com.bluesky.spring.dao.UserDaoImpl">
49 <property name="sessionFactory" ref="sessionFactory" />
50 </bean>
51  </beans>

    第四种方式:使用tx标签配置的拦截器

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 http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
12 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
13
14 <context:annotation-config />
15 <context:component-scan base-package="com.bluesky" />
16 <bean id="sessionFactory"
17 class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
18 <property name="configLocation" value="classpath:hibernate.cfg.xml" />
19 <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration" />
20 </bean>
21 <!-- 定义事务管理器(声明式的事务) -->
22 <bean id="transactionManager"
23 class="org.springframework.orm.hibernate3.HibernateTransactionManager">
24 <property name="sessionFactory" ref="sessionFactory" />
25 </bean>
26 <tx:advice id="txAdvice" transaction-manager="transactionManager">
27 <tx:attributes>
28 <tx:method name="*" propagation="REQUIRED" />
29 </tx:attributes>
30 </tx:advice>
31
32 <aop:config>
33 <aop:pointcut id="interceptorPointCuts"
34 expression="execution(* com.bluesky.spring.dao.*.*(..))" />
35 <aop:advisor advice-ref="txAdvice"
36 pointcut-ref="interceptorPointCuts" />
37 </aop:config>
38  </beans>

    第五种方式:全注解

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 http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
12 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
13
14 <context:annotation-config />
15 <context:component-scan base-package="com.bluesky" />
16 <tx:annotation-driven transaction-manager="transactionManager"/>
17 <bean id="sessionFactory"
18 class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
19 <property name="configLocation" value="classpath:hibernate.cfg.xml" />
20 <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration" />
21 </bean>
22 <!-- 定义事务管理器(声明式的事务) -->
23 <bean id="transactionManager"
24 class="org.springframework.orm.hibernate3.HibernateTransactionManager">
25 <property name="sessionFactory" ref="sessionFactory" />
26 </bean>
27  </beans>

此时在DAO上需加上@Transactional注解,如下:

1 package com.bluesky.spring.dao;
2
3  import java.util.List;
4  import org.hibernate.SessionFactory;
5 import org.springframework.beans.factory.annotation.Autowired;
6 import org.springframework.orm.hibernate3.support.HibernateDaoSupport;
7 import org.springframework.stereotype.Component;
8 import com.bluesky.spring.domain.User;
9 @Transactional
10 @Component("userDao")
11 public class UserDaoImpl extends HibernateDaoSupport implements UserDao {
12 public List<User> listUsers() {
13 return this.getSession().createQuery("from User").list();
14 }
15 }

转载于:https://www.cnblogs.com/gaoyoubo/archive/2010/10/26/1965093.html

Spring2.5事务配置的5种方法相关推荐

  1. Spring事务配置的五种方式 说明

    Spring事务配置的五种方式  [转 http://blog.csdn.net/hjm4702192/article/details/17277669] Spring配置文件中关于事务配置总是由三个 ...

  2. Spring事务配置的五种方式和spring里面事务的传播属性和事务隔离级别、不可重复读与幻读的区别

    前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家.点击跳转到教程. spring事务配置的五种方式 前段时间对Spring的事务配置做了比较深入的研究,在此之间对Spr ...

  3. 电脑连接电视方法详解_查看电脑配置的几种方法(图文详解)

    很多朋友想要了解自己电脑详细的配置的时候,一般都是通过第三方的工具检测的.那么有没有其他更好的方法可以在win系统下查看电脑配置呢?今天我就给大家分享一下如何查看电脑配置. 查看电脑配置的几种方法图文 ...

  4. 怎样检查计算机的网络配置,如何检查计算机内存和配置?(3种方法教你检查计算机的真实配置)...

    随着互联网的飞速发展,无论是学习.工作还是生活,我们和电脑的关系越来越密切.因此,学习购买电脑已经成为一门必修课.然而,对于一些不了解计算机的白人来说,如果他们甚至不能检查计算机的配置,就很容易掉进坑 ...

  5. 最后一次正确配置计算机,win10进入最后一次正确配置的三种方法

    电脑使用时间久都会出现一些小问题,如果实在无法解决的问题的时候可以通过进入最后一次正确配置来解决,那么win10如何进入最后一次正确配置?相信大部分新手都不懂怎么操作?就此疑问,小编分享win10进入 ...

  6. 台式机计算机型号怎么查,电脑配置怎么查询?笔记本台式机查询电脑配置的四种方法...

    电脑配置怎么查询?虽然说现在网络非常的发达,但是并不是每个人都是电脑专家,还有一些不怎么接触电脑的小白用户,对于电脑配置怎么查询并不了解.今天智能手机网就为大家带来了电脑配置查询的具体方法,一起来瞧一 ...

  7. 怎么查看台式计算机系统,怎么查看电脑配置呢?三种方法知道电脑详细配置

    怎么查看电脑配置呢?很多朋友想要了解自己电脑详细的配置的时候,一般都是通过第三方的工具检测的,那么有没有其他更好的方法呢?下面小白系统带你认识下查看电脑配置的三种方法. 以下方法针对win7.win8 ...

  8. spring中事务配置的3种方式-2

    http://doc.javanb.com/spring-framework-reference-zh-2-0-5/ch09s05.html http://zpchen.iteye.com/blog/ ...

  9. SSH深度历险(六) 深入浅出----- Spring事务配置的五种方式

    这对时间在学习SSH中Spring架构,Spring的事务配置做了具体总结.在此之间对Spring的事务配置仅仅是停留在听说的阶段,总结一下.总体把控.通过这次的学习发觉Spring的事务配置仅仅要把 ...

最新文章

  1. 你应该知道的7个写出更好的 Java 代码的技巧
  2. bartender外部表不是预期格式_三张表轻松搞定项目计划
  3. html添加背景音乐记事本,肿么在用记事本写的html网页中添加视频
  4. 文件系统一些概念【更新完毕】
  5. Java 解析XML的几种方法
  6. x210烧写流程(inand)
  7. 2010暑期实训有感【三】
  8. 自注意力机制卷积神经网络的作物叶片病害识别
  9. Linux电驴客户端,全面介绍Linux安装电驴
  10. 17家中国初创IT公司的失败史【转】
  11. 第九弹:计算机编程入门,免费学习资源,2020.07.05更新
  12. 此PL2303驱动程序不支持Windows11及后续版本,请安装正确驱动程序
  13. 什么叫死区时间_关于pwm死区时间的介绍
  14. Aria2 下载工具(转)
  15. 5.1.2全景声音箱摆位_客厅影院选择7.1还是5.1.2全景声合适,天空音箱点位怎么定...
  16. Keepserver 与 IFIX OPC PowerTool相互关联
  17. 岛马游戏编程之路(二)
  18. 瀑布模型的问题是什么?
  19. 5G NR学习理解系列——时频结构及相关概念
  20. 日志管理系统排名_目前较好的日志管理系统有哪些?

热门文章

  1. 查看jvm的full gc的频率
  2. Android开发笔记(一百四十)Word文件的读取与显示
  3. php rabbitmq延迟队列示例
  4. PyCharm中的快捷键不能用怎么办?(复制粘贴)
  5. 2014广东高考分数线
  6. c#通过反射移除所有事件
  7. 无显示仍然发挥树莓派——VNCserver设定
  8. 成功安装完EASYPHP后,无法打开127.0.0.1页面的解决办法
  9. 在tomcat下context.xml中配置各种数据库连接池(转)
  10. Linux中的进程调度(六)