Stop referring to JDK 1.5 plus polishing

This commit is contained in:
Sam Brannen
2024-03-14 16:00:51 +01:00
parent 8e2134c6a7
commit e1b1435a00
8 changed files with 44 additions and 81 deletions

View File

@@ -35,13 +35,14 @@ import org.springframework.util.CollectionUtils;
/**
* Implementation of the
* {@link org.springframework.transaction.interceptor.TransactionAttributeSource}
* interface for working with transaction metadata in JDK 1.5+ annotation format.
* interface for working with transaction metadata from annotations.
*
* <p>This class reads Spring's JDK 1.5+ {@link Transactional} annotation and
* <p>This class reads Spring's {@link Transactional @Transactional} annotation and
* exposes corresponding transaction attributes to Spring's transaction infrastructure.
* Also supports JTA 1.2's {@link jakarta.transaction.Transactional} and EJB3's
* Also supports JTA's {@link jakarta.transaction.Transactional} and EJB's
* {@link jakarta.ejb.TransactionAttribute} annotation (if present).
* This class may also serve as base class for a custom TransactionAttributeSource,
*
* <p>This class may also serve as base class for a custom TransactionAttributeSource,
* or get customized through {@link TransactionAnnotationParser} strategies.
*
* @author Colin Sampaleanu