From b88a628e605fa3e0ce34b0a52fc2982169fb8e53 Mon Sep 17 00:00:00 2001 From: Glenn Renfro Date: Wed, 26 Nov 2025 17:42:56 -0500 Subject: [PATCH] Fix some misspelling in the docs --- spring-batch-docs/modules/ROOT/nav.adoc | 2 +- .../modules/ROOT/pages/job/configuring-repository.adoc | 2 +- spring-batch-docs/modules/ROOT/pages/scalability.adoc | 2 +- .../modules/ROOT/pages/spring-batch-integration.adoc | 2 +- ...xternelazing-execution.adoc => externalizing-execution.adoc} | 0 spring-batch-docs/modules/ROOT/pages/testing.adoc | 2 +- 6 files changed, 5 insertions(+), 5 deletions(-) rename spring-batch-docs/modules/ROOT/pages/spring-batch-integration/{externelazing-execution.adoc => externalizing-execution.adoc} (100%) diff --git a/spring-batch-docs/modules/ROOT/nav.adoc b/spring-batch-docs/modules/ROOT/nav.adoc index 2025b5a14d..d01265411a 100644 --- a/spring-batch-docs/modules/ROOT/nav.adoc +++ b/spring-batch-docs/modules/ROOT/nav.adoc @@ -53,7 +53,7 @@ ** xref:spring-batch-integration/available-attributes-of-the-job-launching-gateway.adoc[] ** xref:spring-batch-integration/providing-feedback-with-informational-messages.adoc[Providing Feedback with Informational Messages] ** xref:spring-batch-integration/asynchronous-processing.adoc[Asynchronous Processors] -** xref:spring-batch-integration/externelazing-execution.adoc[Externalizing Batch Process Execution] +** xref:spring-batch-integration/externalizing-execution.adoc[Externalizing Batch Process Execution] * xref:spring-batch-observability.adoc[] ** xref:spring-batch-observability/micrometer.adoc[] ** xref:spring-batch-observability/jfr.adoc[] diff --git a/spring-batch-docs/modules/ROOT/pages/job/configuring-repository.adoc b/spring-batch-docs/modules/ROOT/pages/job/configuring-repository.adoc index 1b36843df7..881e27b163 100644 --- a/spring-batch-docs/modules/ROOT/pages/job/configuring-repository.adoc +++ b/spring-batch-docs/modules/ROOT/pages/job/configuring-repository.adoc @@ -29,7 +29,7 @@ is provided for you. ==== Java:: + -When using `@EnableBatchProcessing`, a `ResourcelssJobRepository` is provided for you. +When using `@EnableBatchProcessing`, a `ResourcelessJobRepository` is provided for you. This section describes how to customize it. Spring Batch provides two implementations of the `JobRepository` interface which are backed by a database: a JDBC implementation (which can be used with any JDBC-compliant database) and a MongoDB implementation. These two diff --git a/spring-batch-docs/modules/ROOT/pages/scalability.adoc b/spring-batch-docs/modules/ROOT/pages/scalability.adoc index c4779ceaf3..8d156aac2c 100644 --- a/spring-batch-docs/modules/ROOT/pages/scalability.adoc +++ b/spring-batch-docs/modules/ROOT/pages/scalability.adoc @@ -292,7 +292,7 @@ message. JMS is the obvious candidate, but other options (such as JavaSpaces) ex the grid computing and shared memory product space. See the section on -xref:spring-batch-integration/externelazing-execution.adoc#remote-chunking[Spring Batch Integration - Remote Chunking] +xref:spring-batch-integration/externalizing-execution.adoc#remote-chunking[Spring Batch Integration - Remote Chunking] for more detail. [[partitioning]] diff --git a/spring-batch-docs/modules/ROOT/pages/spring-batch-integration.adoc b/spring-batch-docs/modules/ROOT/pages/spring-batch-integration.adoc index 017b18451f..cb2cb7f79f 100644 --- a/spring-batch-docs/modules/ROOT/pages/spring-batch-integration.adoc +++ b/spring-batch-docs/modules/ROOT/pages/spring-batch-integration.adoc @@ -37,4 +37,4 @@ This section covers the following key concepts: * xref:spring-batch-integration/available-attributes-of-the-job-launching-gateway.adoc[Available Attributes of the Job-Launching Gateway] * xref:spring-batch-integration/providing-feedback-with-informational-messages.adoc[Providing Feedback with Informational Messages] * xref:spring-batch-integration/asynchronous-processing.adoc[Asynchronous Processors] -* xref:spring-batch-integration/externelazing-execution.adoc[Externalizing Batch Process Execution] \ No newline at end of file +* xref:spring-batch-integration/externalizing-execution.adoc[Externalizing Batch Process Execution] \ No newline at end of file diff --git a/spring-batch-docs/modules/ROOT/pages/spring-batch-integration/externelazing-execution.adoc b/spring-batch-docs/modules/ROOT/pages/spring-batch-integration/externalizing-execution.adoc similarity index 100% rename from spring-batch-docs/modules/ROOT/pages/spring-batch-integration/externelazing-execution.adoc rename to spring-batch-docs/modules/ROOT/pages/spring-batch-integration/externalizing-execution.adoc diff --git a/spring-batch-docs/modules/ROOT/pages/testing.adoc b/spring-batch-docs/modules/ROOT/pages/testing.adoc index d7c5d9d47f..fa4a3a25aa 100644 --- a/spring-batch-docs/modules/ROOT/pages/testing.adoc +++ b/spring-batch-docs/modules/ROOT/pages/testing.adoc @@ -68,7 +68,7 @@ and verifies the end result. Consider an example of a batch job that reads from the database and writes to a flat file. The test method begins by setting up the database with test data. It clears the `CUSTOMER` table and then inserts 10 new records. The test then launches the `Job` by using the -`srartJob()` method. The `srartJob()` method is provided by the `JobOperatorTestUtils` +`startJob()` method. The `startJob()` method is provided by the `JobOperatorTestUtils` class. The `JobOperatorTestUtils` class also provides the `startJob(JobParameters)` method, which lets the test give particular parameters. The `srartJob()` method returns the `JobExecution` object, which is useful for asserting particular information