mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Stop referring to "Java 8" features in documentation
Closes gh-36310
This commit is contained in:
@@ -27,7 +27,7 @@ import java.lang.annotation.Target;
|
||||
* Container annotation that aggregates several {@link Sql @Sql} annotations.
|
||||
*
|
||||
* <p>Can be used natively, declaring several nested {@code @Sql} annotations.
|
||||
* Can also be used in conjunction with Java 8's support for repeatable
|
||||
* Can also be used in conjunction with Java's support for repeatable
|
||||
* annotations, where {@code @Sql} can simply be declared several times on the
|
||||
* same class or method, implicitly generating this container annotation.
|
||||
*
|
||||
|
||||
+2
-3
@@ -100,9 +100,8 @@ import org.springframework.util.StringUtils;
|
||||
* execute certain <em>set up</em> or <em>tear down</em> code outside a
|
||||
* transaction. {@code TransactionalTestExecutionListener} provides such
|
||||
* support for methods annotated with {@link BeforeTransaction @BeforeTransaction}
|
||||
* or {@link AfterTransaction @AfterTransaction}. As of Spring Framework 4.3,
|
||||
* {@code @BeforeTransaction} and {@code @AfterTransaction} may also be declared
|
||||
* on Java 8 based interface default methods.
|
||||
* or {@link AfterTransaction @AfterTransaction}. {@code @BeforeTransaction} and
|
||||
* {@code @AfterTransaction} may also be declared on interface default methods.
|
||||
*
|
||||
* <h3>Configuring a Transaction Manager</h3>
|
||||
* <p>{@code TransactionalTestExecutionListener} expects a
|
||||
|
||||
Reference in New Issue
Block a user