BATCH-1068: Updated Football job to use a top level step and reference.

This commit is contained in:
lucasward
2009-02-11 15:53:05 +00:00
parent 7d5e191287
commit 7595da39ac

View File

@@ -20,12 +20,14 @@
<tasklet reader="gameFileItemReader" writer="gameWriter"
commit-interval="${job.commit.interval}" />
</step>
<step id="playerSummarization">
<tasklet reader="playerSummarizationSource" writer="summaryWriter"
commit-interval="${job.commit.interval}" />
</step>
<step id="playerSummarization" ref="summarizationStep" />
</job>
<step id="summarizationStep">
<tasklet reader="playerSummarizationSource" writer="summaryWriter"
commit-interval="${job.commit.interval}" />
</step>
<beans:bean id="playerWriter" class="org.springframework.batch.sample.domain.football.internal.PlayerItemWriter">
<beans:property name="playerDao">
<beans:bean class="org.springframework.batch.sample.domain.football.internal.JdbcPlayerDao">