Spring配置声明式事务

事务分声明式事务编程式事务,这里主要讲声明式事务。AOP的哲学就是在不改变原来业务和代码的前提进行的,主要是在XML配置文件中配置声明式事务配置事务的通知配置事务切入

XML配置文件如下(spring-dao.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:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       https://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/aop
       https://www.springframework.org/schema/aop/spring-aop.xsd
       http://www.springframework.org/schema/tx
       https://www.springframework.org/schema/tx/spring-tx.xsd">


<!-- DataSource: 使用Spring的数据源替换MyBatis的配置,这里使用Spring提供的JDBC:org.springframework.jdbc.datasource -->
    <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=false&amp;useUnicode=true&amp;characterEncoding=UTF-8" />
        <property name="username" value="root" />
        <property name="password" value="azhouzw94" />
    </bean>

<!-- sqlSessionFactory -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <!-- 绑定mybatis配置文件 -->
        <property name="configLocation" value="classpath:mybatis-config.xml"/>
        <property name="mapperLocations" value="classpath:com/zzw/mapper/*.xml" />
    </bean>

<!-- sqlSessionTemplate这里没有配置,因为这里使用的是SqlSessionDaoSupport,简化了sqlSessionTemplate的注入 -->

    <!-- 配置声明式事务 -->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource" />
    </bean>

    <!-- 结合AOP实现事务的织入 -->
    <!-- 配置事务的通知: -->
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        <!-- 给那些方法配置事务 -->
        <!-- 配置事务的传播特性:new propagation -->
        <tx:attributes>
        	<!-- name: 就是方法的名字,以下'add', 'delete', 'select'会开启传播,'query'设置为只读,'*'通配符代表任何方法都会开启传播 -->
            <tx:method name="add" propagation="REQUIRED"/>
            <tx:method name="delete" propagation="REQUIRED"/>
            <tx:method name="select" propagation="REQUIRED"/>
            <tx:method name="query" read-only="true"/>
            <tx:method name="*" propagation="REQUIRED" />
        </tx:attributes>
    </tx:advice>

    <!-- 配置事务切入 -->
    <aop:config>
        <aop:pointcut id="txPointCut" expression="execution(* com.zzw.mapper.*.* (..))"/>
        <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointCut" />
    </aop:config>

</beans>

spring中PROPAGATION类的事务属性详解

PROPAGATION_REQUIRED:
支持当前事务,如果当前没有事务,就新建一个事务。这是最常见的选择。 (给每个方法设置,这些方法可能组合起来变成一个事务)
PROPAGATION_SUPPORTS:
支持当前事务,如果当前没有事务,就以非事务方式执行。
PROPAGATION_MANDATORY:
支持当前事务,如果当前没有事务,就抛出异常。
PROPAGATION_REQUIRES_NEW:
新建事务,如果当前存在事务,把当前事务挂起。
PROPAGATION_NOT_SUPPORTED:
以非事务方式执行操作,如果当前存在事务,就把当前事务挂起。
PROPAGATION_NEVER:
以非事务方式执行,如果当前存在事务,则抛出异常。
PROPAGATION_NESTED:
支持当前事务,如果当前事务存在,则执行一个嵌套事务,如果当前没有事务,就新建一个事务。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Spring配置声明式事务可以使用XML配置文件。下面是一个示例: 首先,在Spring配置文件中引入tx命名空间,如下所示: ```xml <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd"> <!-- 其他配置 --> </beans> ``` 接下来,为了启用声明式事务,需要配置事务管理器和事务通知器。示例如下: ```xml <!-- 配置数据源 --> <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <!-- 数据源配置 --> </bean> <!-- 配置事务管理器 --> <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="*" propagation="REQUIRED" /> </tx:attributes> </tx:advice> <!-- 配置切面 --> <aop:config> <aop:advisor advice-ref="txAdvice" pointcut="execution(* com.example.service.*.*(..))" /> </aop:config> ``` 在这个示例中,我们配置了一个数据源、一个事务管理器和一个事务通知器。事务通知器定义了事务的传播行为为REQUIRED,这意味着如果当前没有事务,则创建一个新的事务;如果当前存在事务,则加入到当前事务中。 最后,通过使用aop:config配置切面,指定了需要应用事务的目标方法。在这个示例中,我们将事务应用到了`com.example.service`包下的所有方法。 请注意,这只是一个简单的示例,实际的配置可能会根据具体需求有所不同。你也可以通过注解方配置声明式事务,具体可以参考Spring官方文档。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值