使用 AspectJ 的 @Transactional
您也可以通过 AspectJ 方面在 Spring 容器之外使用 Spring 框架的 @Transactional
支持。为此,首先使用 @Transactional
注解对您的类(以及可选的类的 方法)进行注解,然后将您的应用程序与 spring-aspects.jar
文件中定义的 org.springframework.transaction.aspectj.AnnotationTransactionAspect
链接(编织)。您还必须使用事务管理器配置方面。您可以使用 Spring 框架的 IoC 容器来处理对方面的依赖注入。配置事务管理方面的最简单方法是使用 <tx:annotation-driven/>
元素并指定 mode
属性为 aspectj
,如 使用 @Transactional
中所述。由于我们这里关注在 Spring 容器之外运行的应用程序,因此我们将向您展示如何以编程方式执行此操作。
在继续之前,您可能需要阅读使用 @Transactional 和 AOP。
|
以下示例展示了如何创建一个事务管理器并配置 AnnotationTransactionAspect
来使用它。
-
Java
-
Kotlin
// construct an appropriate transaction manager
DataSourceTransactionManager txManager = new DataSourceTransactionManager(getDataSource());
// configure the AnnotationTransactionAspect to use it; this must be done before executing any transactional methods
AnnotationTransactionAspect.aspectOf().setTransactionManager(txManager);
// construct an appropriate transaction manager
val txManager = DataSourceTransactionManager(getDataSource())
// configure the AnnotationTransactionAspect to use it; this must be done before executing any transactional methods
AnnotationTransactionAspect.aspectOf().transactionManager = txManager
当您使用此切面时,您必须注释实现类(或该类中的方法,或两者),而不是类实现的接口(如果有)。AspectJ 遵循 Java 的规则,即接口上的注释不会被继承。 |
类上的 @Transactional
注解指定了类中任何公共方法执行的默认事务语义。
类中方法上的 @Transactional
注解会覆盖类注解(如果有)给出的默认事务语义。您可以注释任何方法,无论其可见性如何。
要将您的应用程序与 AnnotationTransactionAspect
织入,您必须使用 AspectJ 构建您的应用程序(参见 AspectJ 开发指南)或使用加载时织入。有关使用 AspectJ 进行加载时织入的讨论,请参见 在 Spring 框架中使用 AspectJ 进行加载时织入。