BATCH-1013: split the <step> elements name attribute into id and ref attributes

This commit is contained in:
trisberg
2009-02-10 04:52:03 +00:00
parent 52628ea904
commit d3396a3fa7
63 changed files with 251 additions and 171 deletions

View File

@@ -9,10 +9,10 @@
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
<job id="beanWrapperMapperJob">
<step name="step1" next="step2">
<step id="step1" next="step2">
<tasklet reader="tradeFileItemReader" processor="processor" writer="tradeWriter" commit-interval="1"></tasklet>
</step>
<step name="step2">
<step id="step2">
<tasklet reader="personFileItemReader" writer="personWriter" commit-interval="1"></tasklet>
</step>
</job>