Browse Source

Merge branch '3.4.x' into 3.5.x

Closes gh-47748
pull/47987/head
Phillip Webb 2 months ago
parent
commit
7c16f9ac20
  1. 2
      spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigurationReplacements.java
  2. 2
      spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/testcontainers.adoc
  3. 2
      spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/context/runner/AbstractApplicationContextRunnerTests.java
  4. 2
      spring-boot-project/spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/zip/VirtualZipPerformanceTests.java

2
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigurationReplacements.java

@ -79,7 +79,7 @@ final class AutoConfigurationReplacements { @@ -79,7 +79,7 @@ final class AutoConfigurationReplacements {
}
/**
* Loads the relocations from the classpath. Relactions are stored in files named
* Loads the relocations from the classpath. Relocations are stored in files named
* {@code META-INF/spring/full-qualified-annotation-name.replacements} on the
* classpath. The file is loaded using {@link Properties#load(java.io.InputStream)}
* with each entry containing an auto-configuration class name as the key and the

2
spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/testcontainers.adoc

@ -66,7 +66,7 @@ include-code::MyTestConfiguration[] @@ -66,7 +66,7 @@ include-code::MyTestConfiguration[]
== Lifecycle of Managed Containers
If you have used the annotations and extensions provided by Testcontainers, then the lifecycle of container instances is managed entirely by Testcontainers.
Please refer to the {url-testcontainers-docs}[offical Testcontainers documentation] for the information.
Please refer to the {url-testcontainers-docs}[official Testcontainers documentation] for the information.
When the containers are managed by Spring as beans, then their lifecycle is managed by Spring:

2
spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/context/runner/AbstractApplicationContextRunnerTests.java

@ -296,7 +296,7 @@ abstract class AbstractApplicationContextRunnerTests<T extends AbstractApplicati @@ -296,7 +296,7 @@ abstract class AbstractApplicationContextRunnerTests<T extends AbstractApplicati
}
@Test
void getWirhAdditionalContextInterfaceHasCorrectInstanceOf() {
void getWithAdditionalContextInterfaceHasCorrectInstanceOf() {
getWithAdditionalContextInterface()
.run((context) -> assertThat(context).isInstanceOf(AdditionalContextInterface.class));
}

2
spring-boot-project/spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/zip/VirtualZipPerformanceTests.java

@ -43,7 +43,7 @@ class VirtualZipPerformanceTests { @@ -43,7 +43,7 @@ class VirtualZipPerformanceTests {
Path temp;
@Test
void sequentialReadPerformace() throws IOException {
void sequentialReadPerformance() throws IOException {
File file = createZipWithLargeEntries();
long start = System.nanoTime();
try (ZipContent zipContent = ZipContent.open(file.toPath(), "test/")) {

Loading…
Cancel
Save