diff --git a/docs/src/site/docbook/reference/execution.xml b/docs/src/site/docbook/reference/execution.xml
index 44b04634c..ff1aff088 100644
--- a/docs/src/site/docbook/reference/execution.xml
+++ b/docs/src/site/docbook/reference/execution.xml
@@ -91,7 +91,8 @@
-
+
@@ -178,7 +179,7 @@
second argument, 'endOfDay' represents the job name. The final
argument, 'schedule.date=01-01-2008' will be converted into
JobParameters. An example of the XML
- configuration is below:
+ configuration is below:
<bean id="endOfDay"
class="org.springframework.batch.core.job.SimpleJob">
@@ -215,7 +216,8 @@
-
+
@@ -235,7 +237,7 @@
The most basic implementation of the
JobLauncher interface is the SimpleJobLauncher.
It's only required dependency is a JobRepository,
- in order to obtain an execution:
+ in order to obtain an execution:
<bean id="jobLauncher"
class="org.springframework.batch.execution.launch.SimpleJobLauncher">
@@ -258,14 +260,14 @@
- The sequence is fairly straightforward, and works extremely well
- when launched from a scheduler, but causes issues when trying to launch
- from an HTTP request. In this scenario, the launching needs to be done
+ The sequence is straightforward, and works well when launched from
+ a scheduler, but causes issues when trying to launch from an HTTP
+ request. In this scenario, the launching needs to be done
asynchronously, so that the SimpleJobLauncher
returns immediately to it's caller. This is because it is not good
practice to keep an HTTP request open for the amount of time needed by
- long running processes such as batch. An example sequence is below:
-
+ long running processes such as batch. An example sequence is
+ below:
@@ -372,7 +374,7 @@
</bean>
The configuration above isn't quite complete, each DAO
- implementation is makes a reference to a Spring
+ implementation makes a reference to a Spring
DataFieldMaxValueIncrementer.
JobInstance, JobExecution,
and StepExecution each have unique IDs, and the
@@ -484,8 +486,8 @@
</bean>
To phrase it another way, setting restartable to false means
- "this Job doesn't not support being started again". Restarting a Job
- that is not restartable will cause a
+ "this Job does not support being started again". Restarting a Job that
+ is not restartable will cause a
JobRestartException to be thrown:
Job job = new SimpleJob();
@@ -565,7 +567,8 @@
-
+
@@ -750,13 +753,13 @@
The above example configuration is for a job that loads in
information about football games and summarizes them. It contains
three steps: playerLoad, gameLoad, and playerSummarization. The
- playerLoad Step loads in player information
- from a flatfile, while the gameLoad Step does
- the same for games. The final step, playerSummarization, then
- summarizes the statistics for each player based upon the provided
- games. It is assumed that the file loaded by 'playerLoad' must be
- loaded only once, but that 'gameLoad' will load any games found
- within a particular directory, deleting them after they have been
+ playerLoad Step loads player information from
+ a flatfile, while the gameLoad Step does the
+ same for games. The final step, playerSummarization, then summarizes
+ the statistics for each player based upon the provided games. It is
+ assumed that the file loaded by 'playerLoad' must be loaded only
+ once, but that 'gameLoad' will load any games found within a
+ particular directory, deleting them after they have been
successfully loaded into the database. As a result, the playerLoad
Step contains no additionaly configuration.
It can be started almost limitlessly, and if complete will be
@@ -884,7 +887,7 @@
Step failure. However, not all exceptions are
deterministic. If a FlatFileParseException is encountered while
reading, it will always be thrown for that record. Resseting the
- ItmeReader will not help. However, for other
+ ItemReader will not help. However, for other
exceptions, such as a
DeadlockLoserDataAccessException, which
indicates that the current process has attempted to update a record