`
admin_yin
  • 浏览: 2976 次
  • 性别: Icon_minigender_2
  • 来自: 北京
最近访客 更多访客>>
社区版块
存档分类
最新评论

Spring事务配置的五种方式 (借鉴robbie的文章,留着以备自用)

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

    总结如下:

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

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

    具体如下图:



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

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

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-2.5.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">

    <bean id="sessionFactory" 
            class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> 
        <property name="configLocation" value="classpath:hibernate.cfg.xml" /> 
        <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration" />
    </bean> 

    <!-- 定义事务管理器(声明式的事务) --> 
    <bean id="transactionManager"
        class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>
   
    <!-- 配置DAO -->
    <bean id="userDaoTarget" class="com.bluesky.spring.dao.UserDaoImpl">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>
   
    <bean id="userDao" 
        class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean"> 
           <!-- 配置事务管理器 --> 
           <property name="transactionManager" ref="transactionManager" />    
        <property name="target" ref="userDaoTarget" /> 
         <property name="proxyInterfaces" value="com.bluesky.spring.dao.GeneratorDao" />
        <!-- 配置事务属性 --> 
        <property name="transactionAttributes"> 
            <props> 
                <prop key="*">PROPAGATION_REQUIRED</prop>
            </props> 
        </property> 
    </bean> 
</beans>
    第二种方式:所有Bean共享一个代理基类

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-2.5.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">

    <bean id="sessionFactory" 
            class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> 
        <property name="configLocation" value="classpath:hibernate.cfg.xml" /> 
        <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration" />
    </bean> 

    <!-- 定义事务管理器(声明式的事务) --> 
    <bean id="transactionManager"
        class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>
   
    <bean id="transactionBase" 
            class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean" 
            lazy-init="true" abstract="true"> 
        <!-- 配置事务管理器 --> 
        <property name="transactionManager" ref="transactionManager" /> 
        <!-- 配置事务属性 --> 
        <property name="transactionAttributes"> 
            <props> 
                <prop key="*">PROPAGATION_REQUIRED</prop> 
            </props> 
        </property> 
    </bean>   
  
    <!-- 配置DAO -->
    <bean id="userDaoTarget" class="com.bluesky.spring.dao.UserDaoImpl">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>
   
    <bean id="userDao" parent="transactionBase" > 
        <property name="target" ref="userDaoTarget" />  
    </bean>
</beans>
第三种方式:使用拦截器

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-2.5.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">

    <bean id="sessionFactory" 
            class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> 
        <property name="configLocation" value="classpath:hibernate.cfg.xml" /> 
        <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration" />
    </bean> 

    <!-- 定义事务管理器(声明式的事务) --> 
    <bean id="transactionManager"
        class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>
  
    <bean id="transactionInterceptor" 
        class="org.springframework.transaction.interceptor.TransactionInterceptor"> 
        <property name="transactionManager" ref="transactionManager" /> 
        <!-- 配置事务属性 --> 
        <property name="transactionAttributes"> 
            <props> 
                <prop key="*">PROPAGATION_REQUIRED</prop> 
            </props> 
        </property> 
    </bean>
     
    <bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator"> 
        <property name="beanNames"> 
            <list> 
                <value>*Dao</value>
            </list> 
        </property> 
        <property name="interceptorNames"> 
            <list> 
                <value>transactionInterceptor</value> 
            </list> 
        </property> 
    </bean> 
 
    <!-- 配置DAO -->
    <bean id="userDao" class="com.bluesky.spring.dao.UserDaoImpl">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>
</beans>
第四种方式:使用tx标签配置的拦截器

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-2.5.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">

    <context:annotation-config />
    <context:component-scan base-package="com.bluesky" />

    <bean id="sessionFactory" 
            class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> 
        <property name="configLocation" value="classpath:hibernate.cfg.xml" /> 
        <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration" />
    </bean> 

    <!-- 定义事务管理器(声明式的事务) --> 
    <bean id="transactionManager"
        class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>

    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        <tx:attributes>
            <tx:method name="*" propagation="REQUIRED" />
        </tx:attributes>
    </tx:advice>
   
    <aop:config>
        <aop:pointcut id="interceptorPointCuts"
            expression="execution(* com.bluesky.spring.dao.*.*(..))" />
        <aop:advisor advice-ref="txAdvice"
            pointcut-ref="interceptorPointCuts" />       
    </aop:config>     
</beans>
第五种方式:全注解


<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-2.5.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">

    <context:annotation-config />
    <context:component-scan base-package="com.bluesky" />

    <tx:annotation-driven transaction-manager="transactionManager"/>

    <bean id="sessionFactory" 
            class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> 
        <property name="configLocation" value="classpath:hibernate.cfg.xml" /> 
        <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration" />
    </bean> 

    <!-- 定义事务管理器(声明式的事务) --> 
    <bean id="transactionManager"
        class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>
   
</beans>
此时在DAO上需加上@Transactional注解,如下:

package com.bluesky.spring.dao;

import java.util.List;

import org.hibernate.SessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;
import org.springframework.stereotype.Component;

import com.bluesky.spring.domain.User;

@Transactional
@Component("userDao")
public class UserDaoImpl extends HibernateDaoSupport implements UserDao {

    public List<User> listUsers() {
        return this.getSession().createQuery("from User").list();
    }
   
   
}
[/size]
分享到:
评论

相关推荐

    spring事务配置

    2. "Spring事务配置的五种方式 - robbie - BlogJava.mht":这篇文章可能详细介绍了Spring支持的五种事务管理方式,包括: -编程式事务管理(PlatformTransactionManager接口和TransactionTemplate类) -基于注解的...

    Spring配置

    从`Spring事务配置的五种方式 - robbie - BlogJava.mht`这个文件名推测,文章可能涵盖了以下五种方式: - XML配置 - 注解配置 - Java配置 - Programmatic transaction management(程序化事务管理) - AspectJ...

    Better man Robbie Williams

    Better man Robbie Williams

    Robbie (Remote Backup)-开源

    总体而言,Robbie作为一个开源备份解决方案,结合了高效的数据追踪和跨平台兼容性,为用户提供了一种可靠的数据保护方法。同时,它的开源性质鼓励了社区参与和创新,使其不断发展和完善。对于那些重视数据安全和个人...

    Scala 中的 HTML 内容,文章提取器 - Gravity Labs 开源.zip

    提取的目标是尝试从文章开头获取最纯粹的提取,以服务需要与图像一起显示网络文章第一个片段的 flipboard/pulse 类型的应用程序。Goose将尝试提取以下信息文章正文文章主图文章中嵌入的任何 Youtube/Vimeo 电影元...

    Windows Server 2003 Security Cookbook By Robbie Allen, Mike Danseglio

    Windows Server 2003 Security Cookbook By Robbie Allen, Mike Danseglio Pages: 520

    Robbie-crx插件

    安装CRX文件是将扩展程序添加到Chrome浏览器的一种方式。Robbie.crx就是这个扩展程序的打包文件,它是以二进制格式存储的,包含了扩展的所有资源、代码和元数据。用户通常需要将CRX文件拖放到Chrome的扩展管理页面来...

    Robbie's Shell for Windows-开源

    **Robbie's Shell for Windows 开源项目详解** `Robbie's Shell for Windows`,简称`winrosh`,是一款专为Windows系统设计的开源命令行外壳工具。它旨在为Windows用户提供与Bash相似的文件补全功能,为那些习惯于...

    robbie.xyz:Robbie Jakob-Whitworth的个人网站

    robbie.xyz Robbie Jakob-Whitworth的个人网站。要求节点v10 v12不起作用快速开始1.安装依赖项npm install2.建立资产如果在本地工作: npm run dev如果要生产: npm run prod要观看资产: npm run watch3.启动服务器...

    Robbie Williams New Tab Theme-crx插件

    Robbie Williams New Tab Extension为您的Chrome浏览器带来了新外观。 安装Robbie Williams New Tab,欣赏Robbie Williams的精选高清图像。 它带有一些很酷的属性,这些属性可以改善您的“新标签页”体验,例如:-每...

    八年级典范英语第本PPT课件.pptx

    课件的核心故事围绕着Robbie Woods和他的伙伴们展开,他们正在排练和表演《罗宾汉》这一经典剧目。 在课件的开始,我们看到学生们被引导复述故事,一章接一章地进行,这是一种增强记忆力和口头表达能力的有效方法。...

    robbiep.github.io:罗比·珀尔斯坦 (Robbie Perlstein) 的 GitHub 页面

    robbiep.github.io 罗比·珀尔斯坦 (Robbie Perlstein) 的 GitHub 页面

    河北省邯郸市磁县第二中学2019_2020学年高一英语下学期期中试题

    在河北省邯郸市磁县第二中学2019-2020学年高一英语下学期的期中试题中,便融入了机器人在日常生活和教育中应用的相关内容,通过阅读理解的方式,让学生们深入探讨和理解这一现象。 首先,试题中介绍的家用机器人...

    数据库系统基础教程第二章答案.doc

    Customers关系的另一种表示方式是: 按身份证号排序显示名字、姓氏和账号: 805-333 Lena Hand 23456 805-333 Lena Hand 12345 901-222 Robbie Banks 12345 练习2.2.2: 举了一些通常作为关系中键的属性例子: 1. ...

    研究生-华为杯.zip

    2. loopQR.zip:loop QR 可能是一种编码方式或者隐藏信息的方法,挑战可能涉及到二维码解码和循环结构的理解。 3. Robbie gave up.zip:这可能是一个谜题,暗示参赛者需要解码或解决与“Robbie”有关的问题。 4. lin...

    数据库系统基础教程第二章答案

    根据给定文件的信息,我们可以提炼出以下关于数据库系统的知识点: ### 数据库系统基础教程第二章答案解析 #### Exercise 2.2.1: 关系、属性与元组 ... - 因此,共有2880种不同的呈现方式(120 * 24 = 2880)。

    五年级上册英语习题期末总复习阅读|教科广州深圳PPT学习教案.pptx

    这篇文档是针对五年级上册英语学习的期末复习材料,主要包含了多项选择题,旨在帮助学生复习和提高英语听说读写的能力。以下是根据文档内容整理的相关知识点: 1. **日常交际用语**: - 当别人问你的爱好时,应答...

    website:Robbie Jakob-Whitworth的个人网站

    罗比的个人网站 这是Netlify上托管的Jekyll个人投资组合网站。 基于 。将卡添加到投资组合前往_data并填写volunteering.yml _data , experience.yml和education.yml 。 志愿服务的例子。 - role : Lead Organiser ...

    广州英语五年级上册UnitCanyoudomyhomeworkPPT课件.pptx

    这篇PPT课件是针对广州地区五年级上册英语课程的内容,主要围绕“Unit Can you do my homework”展开,旨在帮助学生学习和掌握与能力相关的英语词汇和句型。课件通过一系列活动和互动,激发学生的学习兴趣,提高他们...

    Mac开发环境搭建之 apache-maven-3.5.3 MacOS版 免安装直接使用

    输入命令以使bash_profile生效 $ source ~/.bash_profile 输入mvn -v查看Maven是否安装成功 如果遇到以下异常,重新编辑bash_profile文件,增加export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.7.0_11.jdk...

Global site tag (gtag.js) - Google Analytics