Results 1 to 1 of 1

Thread: nested job and listener

  1. #1
    Join Date
    Sep 2012
    Posts
    3

    Default nested job and listener

    Hello,

    I am trying to nested multijob and add some listeners like this :

    <batch:job id="parentJOB">

    <batch:step id="firstStep">
    <batch:job ref="firstJOB"/>
    <batch:next on="COMPLETED" to="secondStep" />
    </batch:step>

    <batch:step id="secondStep">
    <batch:job ref="secondJOB" job-parameters-extractor="jobParametersExtractor"/>
    <batch:next on="COMPLETED" to="finalStep" />
    </batch:step>

    <batch:step id="finalStep">
    <batch:job ref="finalJOB"/>
    </batch:step>

    </batch:job>

    How can I use jobParametersExtractor in the finalJOB.
    Any idea ?
    Can anyone help me.
    Last edited by SSO_61; Sep 5th, 2012 at 09:36 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •