This assumes that you have read the spring batch beginner tutorial & industrial strength part 1. This is the final part. Step 1: The annotated Java classes are referenced directly due to following line in the batch-context.xml
1 2 3 4 | <!-- Component-Scan automatically detects annotations in the Java classes. --> <context:component-scan base-package="com.myapp.batch" /> |
Step 2:…