Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion spring-batch-docs/modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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[]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion spring-batch-docs/modules/ROOT/pages/scalability.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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]
* xref:spring-batch-integration/externalizing-execution.adoc[Externalizing Batch Process Execution]
2 changes: 1 addition & 1 deletion spring-batch-docs/modules/ROOT/pages/testing.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down