Logging in Spring batch

2019-06-08 17:06发布

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.

2条回答
甜甜的少女心
2楼-- · 2019-06-08 17:20

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.

查看更多
Ridiculous、
3楼-- · 2019-06-08 17:26

Use Slf4j for logging, using sl4j you could log anything inside your batch job

 log.info("Converting (" + jobDetails + ") into (" + transformedJobDetails + ")");
查看更多
登录 后发表回答