DATACMNS-1720 - Fix Javadoc for CustomAnnotationTransactionAttributeSource to correctly describe JTA support.

Original pull request: #441.
This commit is contained in:
Cicio Flaviu
2020-05-08 16:26:56 +03:00
committed by Mark Paluch
parent 796c86903c
commit d9a1f65f05

View File

@@ -114,9 +114,9 @@ class TransactionalRepositoryProxyPostProcessor implements RepositoryProxyPostPr
* working with transaction metadata in JDK 1.5+ annotation format.
* <p>
* 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