1 Attachment(s)
Unable to Customize the Batch Admin
http://static.springsource.org/sprin...ence/jobs.html
I followed the above link and added a job in jobs.xml
<batch:job id="footballJob">
<batch:step id="playerload" parent="s1" next="gameLoad" />
<batch:step id="gameLoad" parent="s3" next="playerSummarization" />
<batch:step id="playerSummarization" parent="s3" />
</batch:job>
The directory structure is shown here...
Attachment 5361
But i am getting the same jobs...the default ones..
infinite
job1
job2
I see in the console that the file jobs.xml is not even being loaded..but in the page at the above url says "Include Spring XML files in META-INF/spring/batch/jobs. Each file should be self-contained (except for Batch execution components like the jobRepository which are provided centrally), and carry one or more bean definitions for a Spring Batch Job. When the application starts these files are scanned and loaded as child contexts, and then the jobs are registered with a JobRegistry in the parent."
Where am i making the mistake..?
Please help..