Spring事务管理提供了声明式事务管理和编程式事务管理两种方式。
声明式事务管理
在声明式事务管理中,可以通过配置XML文件或使用注解来定义事务的属性,而不需要显式编写事务管理代码。Spring会自动在方法执行前开始事务,并在方法执行结束后提交或回滚事务。
- XML配置方式:使用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/beanshttp://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx.xsd"><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:pointcut id="serviceMethods" expression="execution(* com.demo.service.*.*(..))" /><aop:advisor advice-ref="txAdvice" pointcut-ref="serviceMethods" /></aop:config></beans>
- 注解方式:使用注解来声明事务属性。
@Service
public class MyService {@Autowiredprivate MyRepository myRepository;@Transactionalpublic void doSomething() {// 执行数据库操作myRepository.saveData();}
}
编程式事务管理
在编程式事务管理中,可以使用编程方式管理事务,而不是依赖声明式配置或注解。Spring提供了TransactionTemplate
和PlatformTransactionManager
等类来支持编程式事务管理。
@Service
public class MyService {@Autowiredprivate MyRepository myRepository;@Autowiredprivate PlatformTransactionManager transactionManager;public void doSomething() {TransactionTemplate txTemplate = new TransactionTemplate(transactionManager);txTemplate.execute(status -> {try {// 执行数据库操作myRepository.saveData();} catch (Exception e) {status.setRollbackOnly(); // 手动回滚事务}return null;});}
}
事务管理属性
Spring允许在事务上定义各种属性,例如隔离级别、传播行为、超时等。这些属性可以确保事务在应用程序中得到适当的管理。常见的事务属性包括:
- 隔离级别(Isolation Level):定义事务之间的隔离程度,如读已提交、可重复读等。
- 传播行为(Propagation Behavior):定义方法在已经存在事务的情况下如何处理事务,如REQUIRED、REQUIRES_NEW等。
- 超时(Timeout):定义事务的最大执行时间。
- 只读(Read-Only):指示事务是否只读,可以优化性能。
- 回滚规则(Rollback Rules):定义哪些异常触发事务回滚。
- 事务名称(Transaction Name):为事务指定一个名称,可用于分布式事务。
在Spring事务管理中,这些事务属性是可配置的,但如果不显式指定它们,Spring将使用默认值:
-
隔离级别(Isolation Level):默认隔离级别通常是数据库的默认级别。例如,在大多数数据库中,隔离级别默认为READ_COMMITTED。
-
传播行为(Propagation Behavior):默认传播行为通常是REQUIRED。这意味着如果当前没有事务,就创建一个新的事务;如果已经存在事务,就加入到当前事务中。
-
超时(Timeout):默认超时时间通常是无限的,意味着没有超时限制。
-
只读(Read-Only):默认情况下,事务是可读写的。如果您不指定只读属性,事务将允许读取和写入操作。
-
回滚规则(Rollback Rules):默认情况下,Spring不会配置任何回滚规则,这意味着事务将在遇到任何未捕获的异常时回滚。
-
事务名称(Transaction Name):默认情况下,Spring不会为事务指定名称。