Logging in Spring batch

二次信任 提交于 2019-12-08 13:50:50

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!