From 5cb046da3db9f175a0ee099fd2f2111ea01f996d Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Wed, 16 Jul 2014 18:16:46 +0200 Subject: [PATCH] Update Javadoc in SqlScriptsTestExecutionListener --- .../test/context/jdbc/SqlScriptsTestExecutionListener.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-test/src/main/java/org/springframework/test/context/jdbc/SqlScriptsTestExecutionListener.java b/spring-test/src/main/java/org/springframework/test/context/jdbc/SqlScriptsTestExecutionListener.java index 968c4289bf..e982f4215f 100644 --- a/spring-test/src/main/java/org/springframework/test/context/jdbc/SqlScriptsTestExecutionListener.java +++ b/spring-test/src/main/java/org/springframework/test/context/jdbc/SqlScriptsTestExecutionListener.java @@ -55,8 +55,8 @@ import org.springframework.util.ResourceUtils; * value of the {@link Sql#executionPhase executionPhase} flag. * *

Scripts will be executed either within an existing Spring-managed transaction - * or within a new, isolated transaction, depending on the configured value of the - * {@link Sql#requireNewTransaction requireNewTransaction} flag. + * or within an isolated transaction, depending on the configured value of + * {@link SqlConfig#transactionMode}. * *

Script Resources

*

For details on default script detection and how explicit script locations @@ -65,7 +65,7 @@ import org.springframework.util.ResourceUtils; *

Required Spring Beans

*

A {@link DataSource} and {@link PlatformTransactionManager} must be defined * as beans in the Spring {@link ApplicationContext} for the corresponding test. - * Consult the Javadoc for {@link TestContextTransactionUtils#retrieveDataSource} + * Consult the javadocs for {@link TestContextTransactionUtils#retrieveDataSource} * and {@link TestContextTransactionUtils#retrieveTransactionManager} for details * on the algorithms used to locate these beans. *