问题
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.
回答1:
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.
### debug your specific package or classes with the following example
#log4j.logger.org.springframework.jdbc=debug
#log4j.logger.org.springframework.batch=debug
Most of the out-of-box readers and writers should have sufficient debugging.
回答2:
Use Slf4j for logging, using sl4j you could log anything inside your batch job
log.info("Converting (" + jobDetails + ") into (" + transformedJobDetails + ")");
来源:https://stackoverflow.com/questions/30644562/logging-in-spring-batch