spring使用TransactionProxy配置声明式的事务管理

来源:互联网 发布:pdf小说站源码 编辑:程序博客网 时间:2024/05/17 14:16

这里我们做 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:context="http://www.springframework.org/schema/context"     xmlns:aop="http://www.springframework.org/schema/aop"     xmlns:tx="http://www.springframework.org/schema/tx"     xmlns:task="http://www.springframework.org/schema/task"     xsi:schemaLocation="http://www.springframework.org/schema/beans         http://www.springframework.org/schema/beans/spring-beans-3.1.xsd         http://www.springframework.org/schema/context         http://www.springframework.org/schema/context/spring-context-3.1.xsd         http://www.springframework.org/schema/aop         http://www.springframework.org/schema/aop/spring-aop-3.1.xsd         http://www.springframework.org/schema/tx         http://www.springframework.org/schema/tx/spring-tx-3.1.xsd         http://www.springframework.org/schema/task         http://www.springframework.org/schema/task/spring-task-3.1.xsd">    <!-- 引入外部的属性文件 -->    <context:property-placeholder location="classpath:jdbc.properties"/>    <!-- 配置c3p0连接池 -->    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">        <property name="driverClass" value="${jdbc.driverClass}" />        <property name="jdbcUrl" value="${jdbc.url}" />        <property name="user" value="${jdbc.username}" />        <property name="password" value="${jdbc.password}" />    </bean>    <!-- 配置业务层类 -->    <bean id="accountService" class="com.zs.spring.demo2.AccountServiceImpl">        <property name="accountDao" ref="accountDao" />    </bean>    <!-- 配置DAO类(简化,会自动配置JdbcTemplate) -->    <bean id="accountDao" class="com.zs.spring.demo2.AccountDaoImpl">        <property name="dataSource" ref="dataSource" />    </bean>    <!-- ====2.使用XML配置声明式的事务管理(原始方式)====== -->    <!-- 配置事务管理器 -->    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">        <property name="dataSource" ref="dataSource" />    </bean>    <!-- 配置业务层的代理 -->    <bean id="accountServiceProxy" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">        <!-- 配置目标对象 -->        <property name="target" ref="accountService" />        <!-- 注入事务管理器 -->        <property name="transactionManager" ref="transactionManager"></property>        <!-- 注入事务的属性 -->        <property name="transactionAttributes">            <props>                <!--                     prop的格式:                        * PROPAGATION   :事务的传播行为                        * ISOTATION     :事务的隔离级别                        * readOnly      :只读                        * -EXCEPTION    :发生哪些异常回滚事务                        * +EXCEPTION    :发生哪些异常不回滚事务                 -->                 <!-- 表示所有的方法的事务传播行为都是这个 -->                <prop key="transfer">PROPAGATION_REQUIRED</prop>                <!-- <prop key="transfer">PROPAGATION_REQUIRED,readOnly</prop> -->                <!--  表示发生哪些异常做回滚 或者不回滚 -->                <!-- <prop key="transfer">PROPAGATION_REQUIRED,+java.lang.ArithmeticException</prop> -->            </props>        </property>    </bean></beans>如何在java代码中使用呢?     //注入的是代理类    @Resource(name="accountServiceProxy")    private AccountService accountService;    @Test    public void demo1(){        accountService.transfer("aaa", "bbb", 200d);    }

如此一来,配置文件与先前相比简化了很多。我们把这种配置方式称为 Spring 经典的声明式事务管理。相信在早期使用 Spring 的开发人员对这种配置声明式事务的方式一定非常熟悉。

但是,显式为每一个业务类配置一个 TransactionProxyFactoryBean 的做法将使得代码显得过于刻板,为此我们可以使用自动创建代理的方式来将其简化,使用自动创建代理是纯 AOP 知识,请读者参考相关文档,不在此赘述

0 0
原创粉丝点击