目录
一、编程式事务控制相关对象。
(1)事务管理器。
(2)事务定义信息对象(如隔离级别、传播行为)。
(3)事务状态对象。
(4) 知识要点。
二、声明式事务控制—基于xml或注解。
(1)声明式事务控制的定义。
(2)声明式事务控制——基于xml配置。
(2.1) xml配置—声明式事务控制。
(2.2)事务参数的配置。
(2.3)知识要点。
(3) 声明式事务控制——基于注解配置。
(3.1)注解配置—声明式事务控制。
(3.2)注解配置的注意事项。
(3.3)知识要点。
一、编程式事务控制相关对象。
(1)事务管理器。
(2)事务定义信息对象(如隔离级别、传播行为)。
(3)事务状态对象。
(4) 知识要点。
二、声明式事务控制—基于xml或注解。
(1)声明式事务控制的定义。
编程式:用代码(调用方法)开启提交事务等。
声明式:通过配置进行事务控制。
(2)声明式事务控制——基于xml配置。
(2.1) xml配置—声明式事务控制。
重点笔记: 1、<tx:advice></tx:advice>只有这个标签出现也是可以的(不需要写子标签)。 2、如果写了<tx:attributes>标签,其下必须至少有一个<tx:method>标签)
<!--配置平台事务管理器-->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<!--通知 事务的增强-->
<!--重点:<tx:advice></tx:advice>只有这个标签出现也是可以的(不需要写子标签,如果写了<tx:attributes>标签,其下必须至少有一个<tx:method>标签)-->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<!--设置事务的属性信息-->
<tx:attributes>
<!--一个方法是一个事务,对不同方法进行属性配置-->
<tx:method name="transfer" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false"/>
<tx:method name="save" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false"/>
<tx:method name="findAll" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="true"/>
<!--以update开头的方法都符合-->
<tx:method name="update*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="true"/>
<tx:method name="*"/><!--*代表任意方法,后面的参数不写则用默认值-->
</tx:attributes>
</tx:advice>
<!--配置事务的aop织入-->
<aop:config>
<!--第一种方式-->
<aop:pointcut id="txPoincut" expression="execution(* service.impl.AccountServiceImpl.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="txPoincut"/>
<!--第二种方式-->
<!--<aop:advisor advice-ref="txAdvice" pointcut="execution(* service.impl.AccountServiceImpl.*(..))"/>-->
</aop:config>
(2.2)事务参数的配置。
(2.3)知识要点。
(3) 声明式事务控制——基于注解配置。
(3.1)注解配置—声明式事务控制。
重要笔记:
1、为什么注解不需要写切点表达式?
答案:因为这里的不同于AOP的注解,AOP注解在增强方法上,所以需要指定切点表达式。
而事务控制的注解则是配置在切点方法上的,所以不需要写切点表达式 。
<?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/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.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">
<!--组件扫描-->
<context:component-scan base-package="dao"/>
<context:component-scan base-package="service"/>
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="driverClass" value="com.mysql.cj.jdbc.Driver"/>
<property name="jdbcUrl" value="jdbc:mysql://localhost:3306/tan"/>
<property name="user" value="root"/>
<property name="password" value="tan"/>
</bean>
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="dataSource"/>
</bean>
<!--配置平台事务管理器-->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<!--事务的注解驱动,即便不加transaction-manager,也可以成功完成事务控制,不知道有跟没有的区别-->
<tx:annotation-driven transaction-manager="transactionManager"/>
</beans>
(3.2)注解配置的注意事项。
文章来源:https://www.toymoban.com/news/detail-425369.html
(3.3)知识要点。
文章来源地址https://www.toymoban.com/news/detail-425369.html
到了这里,关于27.Spring的事务控制的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!