I am new to spring batch. I want to know how we can put logging statement while implementing spring batch readers and writers. For example if I define readers and writers in spring context XML then later on I can't debug where my code failed. How can I achieve logging in Spring batch. Do I need to extend the available reader classes in java for example flatFileReader and put logging statement in java class.
Or can I achieve this while maintaining my code in context file?
And in case I want to throw my user defined exceptions then how can I do this.
Depending on what you want to debug, if you looking for debugging the out-of-the-box readers and writers, set up your log4j level to debug for the spring batch package.
Most of the out-of-box readers and writers should have sufficient debugging.
Use Slf4j for logging, using sl4j you could log anything inside your batch job