Spring / Spring batch Interview questions
Can a spring batch Job have a parent job?
If a group of Jobs share similar, but not identical, configurations, then it may be helpful to define a "parent" Job from which the concrete Jobs may inherit properties.
<job id="parentJob" abstract="true"> <listeners> <listener ref="parentListener"/> <listeners> </job> <job id="childJob" parent="parentJob"> <step id="step1" parent="standaloneStep"/> <listeners merge="true"> <listener ref="listenerTwo"/> <listeners> </job>
More Related questions...