Difference between Batch Status and Exit Status in Spring Batch

不羁的心 提交于 2020-01-03 07:24:26

问题


Difference between Batch Status and Exit Status in Spring Batch


回答1:


From the Spring Batch documentation:

A BatchStatus object that indicates the status of the execution. While running, it's BatchStatus.STARTED, if it fails, it's BatchStatus.FAILED, and if it finishes successfully, it's BatchStatus.COMPLETED

The ExitStatus indicating the result of the run. It is most important because it contains an exit code that will be returned to the caller.

For more on the difference, see the section 5.3.2.1. Batch Status vs. Exit Status. You will find the explanation is quite good.



来源:https://stackoverflow.com/questions/20463904/difference-between-batch-status-and-exit-status-in-spring-batch

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