首页 > 其他分享 >xml声明式事务控制

xml声明式事务控制

时间:2023-07-26 21:22:47浏览次数:34  
标签:xml 事务 money REQUIRED isolation accountMapper 声明

1、applicationContext.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:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="
       http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/mvc
       http://www.springframework.org/schema/mvc/spring-mvc.xsd
       http://www.springframework.org/schema/aop
       http://www.springframework.org/schema/aop/spring-aop.xsd
       http://www.springframework.org/schema/tx
       http://www.springframework.org/schema/tx/spring-tx.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context.xsd">

    <!--组件扫描 -->
    <context:component-scan base-package="com.itheima"/>

    <!--加载properties文件-->
    <context:property-placeholder location="classpath:jdbc.properties"/>

    <!--配置数据源信息-->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="${jdbc.driver}"></property>
        <property name="url" value="${jdbc.url}"></property>
        <property name="username" value="${jdbc.username}"></property>
        <property name="password" value="${jdbc.password}"></property>
    </bean>

    <!--配置SqlSessionFactoryBean,作用将SqlSessionFactory存储到spring容器-->
    <bean class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource"></property>
    </bean>

    <!--MapperScannerConfigurer,作用扫描指定的包,产生Mapper对象存到spring容器-->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="basePackage" value="com.itheima.mapper"></property>
    </bean>

    <!--配置平台事务管理器-->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"></property>
    </bean>

    <!--配置spring提供好的advice-->
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        <tx:attributes>
            <!--
                配置不同的方法的事务属性
                name:方法名称 *代表通配符  添加操作addUser、addAccount =>add*
                isolation: 事务的隔离级别,解决事务并发问题
                timeout: 超时时间 默认-1永不超时 单位是秒
                read-only: 是否只读
                propagation:事务的传播行为,解决业务方法调用业务方法(事务嵌套问题) 默认 REQUIRED(默认值)
            -->
            <tx:method name="*" isolation="READ_COMMITTED" timeout="3" read-only="true" propagation="MANDATORY"/>
        </tx:attributes>
    </tx:advice>

    <!--事务增强aop-->
    <aop:config>
        <!--配置切点表达式-->
        <aop:pointcut id="txPointcut" expression="execution(* com.itheima.service.impl.*.*(..))"/>
        <!--配置织入关系 通知advice-ref引入spring提供好的-->
        <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointcut"/>
    </aop:config>

</beans>

2.、spring事务控制,注解声明式事务控制

<!--事务的自动代理(注解驱动)-->
<tx:annotation-driven/>
@Service("accountService")
@Transactional(isolation = Isolation.READ_COMMITTED, propagation = Propagation.REQUIRED)
public class AccountServiceImpl implements AccountService {

    @Autowired
    private AccountMapper accountMapper;

    @Override
    @Transactional(isolation = Isolation.READ_COMMITTED, propagation = Propagation.REQUIRED)
    public void transferMoney(String outAccount, String inAccount, Integer money) {
        accountMapper.incrMoney(outAccount, money);
        accountMapper.decrMoney(inAccount, money);
    }
}

 

标签:xml,事务,money,REQUIRED,isolation,accountMapper,声明
From: https://www.cnblogs.com/record-100/p/17583559.html

相关文章

  • java 接收任何类型的Map的参数声明
    Java接收任何类型的Map的参数声明在Java编程中,我们经常需要接收不同类型的Map作为方法的参数,并对其进行处理。在某些情况下,我们希望方法能够接收任何类型的Map,并且能够适应不同类型的数据结构。Java提供了一种灵活的方法来实现这个目标。泛型和通配符为了实现接收任何......
  • Go语言中声明和定义变量
    在Go语言中,声明和定义变量可以通过不同的方式完成。让我们来了解一下:变量声明和定义:变量声明是指在代码中声明一个变量的存在,而变量定义是为该变量分配内存空间并可以同时进行初始化。Go语言的变量声明和定义可以通过以下方式完成:a)声明并初始化变量:varageint=30b)......
  • Spring事务的传播行为
    Spring事务的七种传播行为首先举例事务的嵌套:ServiceA{voidmethodA(){ServiceB.methodB();}}ServiceB{voidmethodB(){}}其中ServiceA#methodA(我们称之为外部事务),ServiceB#methodB(我们称之为内部事务)......
  • 【项目实战】Kafka 生产者幂等性和事务
    ......
  • 本博客一个小小的声明
    不是很重要的标题本博客以后要常用了。csdn里的草稿和队内论坛的内容都会整理一下搬过来(也可能懒得整理),优质文章会整理发到freebuf,相关文章不定时同步到队内论坛。freebuf的链接如果电脑版打开,右下角可以看到。......
  • java分布式事务
    1、2pc原理准备阶段、提交阶段、回滚 协调者和参与者二阶段和三阶段cap定律:可用性,一致性、分区容错性 ......
  • MySQL 事务
    事务1.概念事务是一组命令的集合,强调整体性。以starttransaction或begin开始,以commit或callback结束。starttransactionupdate...1update...2commitbeginupdate...3update...4rollbackcommit表示提交本次事务,完成修改。(若失败,自动回滚回begin......
  • MySQL 事务机制
    事务机制:事务语法:--开始事务begin;--或starttransaction;--提交commit;--回滚rollback;--保存点savepoint;事务特性:默认事务:MySQL的事务默认自动提交:在自动提交的状态下每一条SQL就是一个事务会被直接执行手动开启事务后:则所有的SQL语句都在一个事......
  • Mysql事务
    1.事务1.1.基本特性ACID原子性Atomicity一致性Consistency隔离性Isolation持久性Durability 1.2.隔离级别READUNCOMMITTED(读未提交)READCOMMITTED(读已提交)REPEATABLEREAD(可重复读)SERIALIZABLE(串行化)1.2.1.查看隔离级别showvariableslike'transa......
  • Android开发笔记[2]-传统XML方式界面布局
    摘要使用传统的XML方式对Androidapp界面进行布局.平台信息AndroidStudio:ElectricEel|2022.1.1Patch2Gradle:distributionUrl=https://services.gradle.org/distributions/gradle-7.5-bin.zipjvmTarget='1.8'minSdk24targetSdk34compileSdk34开发语言:Kotl......