From 1ec6f7de303e00429e27cd1047d3d5d9e2cc9d71 Mon Sep 17 00:00:00 2001 From: Jay Bryant Date: Fri, 11 Aug 2017 11:15:55 -0500 Subject: [PATCH] Added See Also links (#18) At the bottom of the document (above the footer), I added links to other guides that readers may find to be useful. --- README.adoc | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/README.adoc b/README.adoc index e958b307e1..a3afa72413 100644 --- a/README.adoc +++ b/README.adoc @@ -117,11 +117,11 @@ The next chunk focuses on the actual job configuration. include::/complete/src/main/java/hello/BatchConfiguration.java[tag=jobstep] ---- . -The first method defines the job and the second one defines a single step. Jobs are built from steps, where each step can involve a reader, a processor, and a writer. +The first method defines the job and the second one defines a single step. Jobs are built from steps, where each step can involve a reader, a processor, and a writer. In this job definition, you need an incrementer because jobs use a database to maintain execution state. You then list each step, of which this job has only one step. The job ends, and the Java API produces a perfectly configured job. -In the step definition, you define how much data to write at a time. In this case, it writes up to ten records at a time. Next, you configure the reader, processor, and writer using the injected bits from earlier. +In the step definition, you define how much data to write at a time. In this case, it writes up to ten records at a time. Next, you configure the reader, processor, and writer using the injected bits from earlier. NOTE: chunk() is prefixed `` because it's a generic method. This represents the input and output types of each "chunk" of processing, and lines up with `ItemReader` and `ItemWriter`. @@ -173,6 +173,14 @@ Found in the database. Congratulations! You built a batch job that ingested data from a spreadsheet, processed it, and wrote it to a database. +== See also + +The following guides may also be helpful: + +* https://spring.io/guides/gs/spring-boot/[Building an Application with Spring Boot] +* https://spring.io/guides/gs/accessing-data-gemfire/[Accessing Data with GemFire] +* https://spring.io/guides/gs/accessing-data-jpa/[Accessing Data with JPA] +* https://spring.io/guides/gs/accessing-data-mongodb/[Accessing Data with MongoDB] +* https://spring.io/guides/gs/accessing-data-mysql/[Accessing data with MySQL] include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/master/footer.adoc[] -