From e5893a49889d624de4c587c623f346216aec28b8 Mon Sep 17 00:00:00 2001 From: Cicio Flaviu Date: Fri, 8 May 2020 16:26:56 +0300 Subject: [PATCH] DATACMNS-1720 - Fix Javadoc for CustomAnnotationTransactionAttributeSource to correctly describe JTA support. --- .../support/TransactionalRepositoryProxyPostProcessor.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/springframework/data/repository/core/support/TransactionalRepositoryProxyPostProcessor.java b/src/main/java/org/springframework/data/repository/core/support/TransactionalRepositoryProxyPostProcessor.java index a13579a7d9..b9e613dc2e 100644 --- a/src/main/java/org/springframework/data/repository/core/support/TransactionalRepositoryProxyPostProcessor.java +++ b/src/main/java/org/springframework/data/repository/core/support/TransactionalRepositoryProxyPostProcessor.java @@ -114,9 +114,9 @@ public void postProcess(ProxyFactory factory, RepositoryInformation repositoryIn * working with transaction metadata in JDK 1.5+ annotation format. *

* This class reads Spring's JDK 1.5+ {@link Transactional} annotation and exposes corresponding transaction - * attributes to Spring's transaction infrastructure. Also supports JTA 1.2's and EJB3's - * {@link javax.ejb.TransactionAttribute} annotation (if present). This class may also serve as base class for a - * custom TransactionAttributeSource, or get customized through {@link TransactionAnnotationParser} strategies. + * attributes to Spring's transaction infrastructure. Also supports JTA 1.2's {@link javax.transaction.Transactional} + * and EJB3's {@link javax.ejb.TransactionAttribute} annotation (if present). This class may also serve as base class + * for a custom TransactionAttributeSource, or get customized through {@link TransactionAnnotationParser} strategies. * * @author Colin Sampaleanu * @author Juergen Hoeller