From 2ea879bab59b031abaf348cfa135c17703b546fe Mon Sep 17 00:00:00 2001 From: Prakash Mani Date: Fri, 16 Oct 2015 12:10:24 +0530 Subject: [PATCH] Corrected the spring-module.xml link --- batch-simple/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/batch-simple/README.md b/batch-simple/README.md index 21f4044..8f7edbb 100644 --- a/batch-simple/README.md +++ b/batch-simple/README.md @@ -11,7 +11,7 @@ In order for the sample to run you will need to have installed: ## Code Tour -The processing actions that are part of a Step in a batch Job are pluggable. The plug-in point for a Step is known as a [Tasklet](http://static.springsource.org/spring-batch/apidocs/org/springframework/batch/core/step/tasklet/Tasklet.html). In this example we create a tasklet by implementing the Tasklet interface. Take a look at the [source code](https://github.com/spring-projects/spring-xd-samples/blob/master/batch-simple/src/main/java/org/springframework/springxd/samples/batch/HelloSpringXDTasklet.java) as well as its incorporation into a [Job definition](https://github.com/spring-projects/spring-xd-samples/blob/master/batch-simple/src/main/resources/spring-module.xml) inside an XML file. Note that the XML file must contain a single Job. +The processing actions that are part of a Step in a batch Job are pluggable. The plug-in point for a Step is known as a [Tasklet](http://static.springsource.org/spring-batch/apidocs/org/springframework/batch/core/step/tasklet/Tasklet.html). In this example we create a tasklet by implementing the Tasklet interface. Take a look at the [source code](https://github.com/spring-projects/spring-xd-samples/blob/master/batch-simple/src/main/java/org/springframework/springxd/samples/batch/HelloSpringXDTasklet.java) as well as its incorporation into a [Job definition](https://github.com/spring-projects/spring-xd-samples/blob/master/batch-simple/src/main/resources/config/spring-module.xml) inside an XML file. Note that the XML file must contain a single Job. ## Building with Maven