Hi,
The following snippet step1 is failing while running in web application.
step0 working fine. But step1 failing, but i want to run step1 also.Code:<batch:job id="filesToTablesJob" job-repository="jobRepository" incrementer="dynamicJobParameters"> <batch:step id="step0" next="step1"> <batch:tasklet transaction-manager="jobRepository-transactionManager" > <batch:chunk reader="playerFileItemReader1" processor="careerProcessor" writer="playerDBWriter1" commit-interval="10" /> </batch:tasklet> </batch:step> <batch:step id="step1"> <batch:tasklet transaction-manager="jobRepository-transactionManager" > <batch:chunk reader="playerFileItemReader2" processor="careerProcessor" writer="playerDBWriter2" commit-interval="10" /> </batch:tasklet> </batch:step> </batch:job>
can any body validate the above code...


Reply With Quote