Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <job id="SomeJobId">
  2.  
  3. <step id="preValidationStep">
  4. <tasklet ref="someTaskLetRef"/>
  5. <next on="COMPLETED" to="actualStepId"/>
  6. <end on="NO-OP"/>
  7. </step>
  8.  
  9. <!-- this step runs in a loop -->
  10. <step id="actualStepId" next="limitDeciderStep">
  11. <tasklet>
  12. <chunk reader="reader" processor="processor"
  13. writer="writer" commit-interval="1">
  14. </chunk>
  15.  
  16. </tasklet>
  17. </step>
  18.  
  19. <!-- this is limit decider -->
  20. <decision id="limitDeciderStep" decider="limitDeciderBean">
  21. <next on="CONTINUE" to="actualStepId" />
  22. <end on="COMPLETED" />
  23. </decision>
  24.  
  25.  
  26.  
  27. </job>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement