Spring事务管理的三种方式
一 、第一种:全注解声明式事务 Xml代码 复制代码 收藏代码
.<?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:p="http://www.springframework.org/schema/p"
. xmlns:tx="http://www.springframework.org/schema/tx"
. xmlns:aop="http://www.springframework.org/schema/aop"
. xmlns:context="http://www.springframework.org/schema/context"
. xsi:schemaLocation="http://www.springframework.org/schema/beans
. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
. http://www.springframework.org/schema/tx
. http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
. http://www.springframework.org/schema/aop
. http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
. http://www.springframework.org/schema/context
. http://www.springframework.org/schema/context/spring-context-2.5.xsd"
. default-init-method="init">
.
. <!-- 引入jdbc配置文件 -->
. <context:property-placeholder location="classpath:jdbc.properties" />
.
. <!--创建jdbc数据源 -->
. <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
. <property name="driverClassName" value="${driver}" />
. <property name="url" value="${url}" />
. <property name="username" value="${username}" />
. <property name="password" value="${password}" />
. </bean>
.
. <!-- 创建SqlSessionFactory,同时指定数据源 -->
. <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
. <property name="dataSource" ref="dataSource" />
. <!-- 配置sql映射文件所在位置 注意:默认与mapper类位置相同 -->
. <property name="mapperLocations" value="classpath:sqlmap/*.xml" />
. </bean>
.
. <!-- 配置事务管理器:第一种 全注解声明式事务 -->
. <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
. <property name="dataSource" ref="dataSource" />
. </bean>
. <tx:annotation-driven transaction-manager="transactionManager" />
. <!-- 第一种 结束位置 -->
. <!-- Mapper接口所在包名,Spring会自动查找其下的Mapper -->
. <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
. <property name="basePackage" value="com.xieke.test.mapper" />
. <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />
. <!-- 默认情况下会自动注入id=sqlSessionFactory的bean,也可以按上述方式指定sqlSessionFactory -->
. </bean>
.
.</beans> 使用时:在需要事务控制的类上加上@Transactional注解就可以了. 二、第二种:使用tx标签配置的拦截器声明式事务 Xml代码 复制代码 收藏代码
.<?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:p="http://www.springframework.org/schema/p"
. xmlns:tx="http://www.springframework.org/schema/tx"
. xmlns:aop="http://www.springframework.org/schema/aop"
. xmlns:context="http://www.springframework.org/schema/context"
. xsi:schemaLocation="http://www.springframework.org/schema/beans
. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
. http://www.springframework.org/schema/tx
. http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
. http://www.springframework.org/schema/aop
. http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
. http://www.springframework.org/schema/context
. http://www.springframework.org/schema/context/spring-context-2.5.xsd"
. default-init-method="init">
.
. <!-- 引入jdbc配置文件 -->
. <context:property-placeholder location="classpath:jdbc.properties" />
.
. <!--创建jdbc数据源 -->
. <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
. <property name="driverClassName" value="${driver}" />
. <property name="url" value="${url}" />
. <property name="username" value="${username}" />
. <property name="password" value="${password}" />
. </bean>
.
. <!-- 创建SqlSessionFactory,同时指定数据源 -->
. <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
. <property name="dataSource" ref="dataSource" />
. <!-- 配置sql映射文件所在位置 注意:默认与mapper类位置相同 -->
. <property name="mapperLocations" value="classpath:sqlmap/*.xml" />
. </bean>
.
. <!-- 配置事务管理器:第二种 使用tx标签配置的拦截器声明式事务 -->
. <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
. <property name="dataSource" ref="dataSource" />
. </bean>
. <!-- 配置事务的传播特性 -->
. <tx:advice id="txAdvice" transaction-manager="transactionManager">
. <tx:attributes>
. <tx:method name="add*" propagation="NESTED" />
. <tx:method name="del*" propagation="NESTED" />
. <tx:method name="*" read-only="true" />
. </tx:attributes>
. </tx:advice>
. <!-- 配置事务的切入点 -->
. <aop:config>
. <aop:pointcut id="targetMethod" expression="execution(* com.xieke.test.service.impl.*.*(..))" />
. <aop:advisor advice-ref="txAdvice" pointcut-ref="targetMethod" />
. </aop:config>
. <!-- 第二种 结束结束位置 -->
.
. <!-- Mapper接口所在包名,Spring会自动查找其下的Mapper -->
. <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
. <property name="basePackage" value="com.xieke.test.mapper" />
. <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />
. <!-- 默认情况下会自动注入id=sqlSessionFactory的bean,也可以按上述方式指定sqlSessionFactory -->
. </bean>
.
.</beans> 三、 第三种:使用拦截器声明式事务 Xml代码 复制代码 收藏代码
.<?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:p="http://www.springframework.org/schema/p"
. xmlns:tx="http://www.springframework.org/schema/tx"
. xmlns:aop="http://www.springframework.org/schema/aop"
. xmlns:context="http://www.springframework.org/schema/context"
. xsi:schemaLocation="http://www.springframework.org/schema/beans
. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
. http://www.springframework.org/schema/tx
. http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
. http://www.springframework.org/schema/aop
. http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
. http://www.springframework.org/schema/context
. http://www.springframework.org/schema/context/spring-context-2.5.xsd"
. default-init-method="init">
.
. <!-- 引入jdbc配置文件 -->
. <context:property-placeholder location="classpath:jdbc.properties" />
.
. <!--创建jdbc数据源 -->
. <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
. <property name="driverClassName" value="${driver}" />
. <property name="url" value="${url}" />
. <property name="username" value="${username}" />
. <property name="password" value="${password}" />
. </bean>
.
. <!-- 创建SqlSessionFactory,同时指定数据源 -->
. <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
. <property name="dataSource" ref="dataSource" />
. <!-- 配置sql映射文件所在位置 注意:默认与mapper类位置相同 -->
. <property name="mapperLocations" value="classpath:sqlmap/*.xml" />
. </bean>
.
. <!-- 配置事务管理器:第三种 使用拦截器声明式事务 -->
. <bean id="transactionManager"
. class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
. <property name="dataSource" ref="dataSource" />
. </bean>
. <bean id="transactionInterceptor"
. class="org.springframework.transaction.interceptor.TransactionInterceptor">
. <property name="transactionManager" ref="transactionManager" />
. <!-- 配置事务属性 -->
. <property name="transactionAttributes">
. <props>
. <!-- PROPAGATION_REQUIRED:支持当前事务,如果当前没有事务,则新建一个事务 -->
. <prop key="add*">PROPAGATION_REQUIRED</prop>
. <prop key="del*">PROPAGATION_REQUIRED</prop>
. </props>
. </property>
. </bean>
. <bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
. <property name="beanNames">
. <list>
. <value>*ServiceImpl</value>
. </list>
. </property>
. <property name="interceptorNames">
. <list>
. <value>transactionInterceptor</value>
. </list>
. </property>
. </bean>
. <!-- 第三种 结束位置 -->
.
. <!-- Mapper接口所在包名,Spring会自动查找其下的Mapper -->
. <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
. <property name="basePackage" value="com.xieke.test.mapper" />
. <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />
. <!-- 默认情况下会自动注入id=sqlSessionFactory的bean,也可以按上述方式指定sqlSessionFactory -->
. </bean>
.
.</beans>
Spring事务的传播属性:
下载地址
PROPAGATION_REQUIRED -- 支持当前事务,如果当前没有事务,就新建一个事务。这是最常见的选择。
PROPAGATION_SUPPORTS -- 支持当前事务,如果当前没有事务,就以非事务方式执行。
PROPAGATION_MANDATORY -- 支持当前事务,如果当前没有事务,就抛出异常。
PROPAGATION_REQUIRES_NEW -- 新建事务,如果当前存在事务,把当前事务挂起。
PROPAGATION_NOT_SUPPORTED -- 以非事务方式执行操作,如果当前存在事务,就把当前事务挂起。
PROPAGATION_NEVER -- 以非事务方式执行,如果当前存在事务,则抛出异常。
PROPAGATION_NESTED -- 如果当前存在事务,则在嵌套事务内执行。如果当前没有事务,则进行与PROPAGATION_REQUIRED类似的操作。
Spring事务管理的三种方式的更多相关文章
- 事务管理(下) 配置spring事务管理的几种方式(声明式事务)
配置spring事务管理的几种方式(声明式事务) 概要: Spring对编程式事务的支持与EJB有很大的区别.不像EJB和Java事务API(Java Transaction API, JTA)耦合在 ...
- Spring事务管理的四种方式(以银行转账为例)
Spring事务管理的四种方式(以银行转账为例) 一.事务的作用 将若干的数据库操作作为一个整体控制,一起成功或一起失败. 原子性:指事务是一个不可分割的工作单位,事务中的操作要么都发生,要么都不 ...
- 配置spring事务管理的几种方式(声明式事务)
Spring配置文件中关于事务配置总是由三个组成部分,分别是DataSource.TransactionManager和代理机制这三部分,无论哪种配置方式,一般变化的只是代理机制这部分. DataSo ...
- Spring事务管理之几种方式实现事务(转)
一:事务认识 大家所了解的事务Transaction,它是一些列严密操作动作,要么都操作完成,要么都回滚撤销.Spring事务管理基于底层数据库本身的事务处理机制.数据库事务的基础,是掌握Spring ...
- Spring事务管理之几种方式实现事务
1.事务认识 大家所了解的事务Transaction,它是一些列严密操作动作,要么都操作完成,要么都回滚撤销.Spring事务管理基于底层数据库本身的事务处理机制.数据库事务的基础,是掌握Spring ...
- Spring事务管理的两种方式
参考文档: http://www.iteye.com/topic/1123347 http://blog.csdn.net/lcj8/article/details/2835432 PS:好像还是tx ...
- Spring事务配置的五种方式(转发)
Spring事务配置的五种方式(原博客地址是http://www.blogjava.net/robbie/archive/2009/04/05/264003.html)挺好的,收藏转发 前段时间对Sp ...
- Spring事务配置的五种方式和spring里面事务的传播属性和事务隔离级别
转: http://blog.csdn.net/it_man/article/details/5074371 Spring事务配置的五种方式 前段时间对Spring的事务配置做了比较深入的研究,在此之 ...
- spring生成EntityManagerFactory的三种方式
spring生成EntityManagerFactory的三种方式 1.LocalEntityManagerFactoryBean只是简单环境中使用.它使用JPA PersistenceProvide ...
随机推荐
- HuffmanTree的浅析和在C#中的算法实现
无论是在我们的开发项目中,还是在我们的日常生活中,都会较多的涉及到文件压缩.谈到文件压缩,可能会有人想问文件压缩到底是怎么实现的,实现的原理是什么,对于开发人员来说,怎么实现这样一个压缩的功能. 接下 ...
- c#静态构造函数 与 构造函数 你是否还记得?
构造函数这个概念,在我们刚开始学习编程语言的时候,就被老师一遍一遍的教着.亲,现在你还记得静态构造函数的适用场景吗?如果没有,那么我们一起来复习一下吧. 静态构造函数是在构造函数方法前面添加了stat ...
- ASP.NET MVC动作过滤器
ASP.NET MVC提供了4种不同的动作过滤器(Aciton Filter). 1.Authorization Filter 在执行任何Filter或Action之前被执行,用于身份验证 2.Act ...
- asp.net 验证控件
前台文件 <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1. ...
- deployment与Web应用程序部署
定义用于支持 Web 应用程序部署的配置设置. <deployment retail="true|false" /> retail属性:设置一个值,该值指定是否以发布模 ...
- SQL 优化总结
SQL 优化总结 (一)SQL Server 关键的内置表.视图 1. sysobjects SELECT name as '函数名称',xtype as XType FROM s ...
- 如何使用Dubbo服务和集成Spring
Dubbo是什么? Dubbo是阿里巴巴SOA服务化治理方案的核心框架,每天为2,000+个服务提供3,000,000,000+次访问量支持,并被广泛应用于阿里巴巴集团的各成员站点. Dubbo是一个 ...
- jquery 格式化系统时间
Date.prototype.Format = function (fmt) { //javascript时间日期函数 var o = { "M+": this.getMonth( ...
- ABP中使用Redis Cache(1)
本文将讲解如何在ABP中使用Redis Cache以及使用过程中遇到的各种问题.下面就直接讲解使用步骤,Redis环境的搭建请直接网上搜索. 使用步骤: 一.ABP环境搭建 到http://www.a ...
- 多个精美的导航样式web2.0源码
效果体验:http://keleyi.com/keleyi/phtml/divcss/6.htm 兼容多浏览器,例如IE,Chrome,火狐 等. 完整代码,保存到htm文件打开也可以查看效果: &l ...