如您在Spring Batch reference中所见,表BATCH_STEP_EXECUTION的列为EXIT_MESSAGE。但是在相应的Java类StepExecution中,我找不到此字段的getter。

我在数据库中看到堆栈跟踪存储在此列中,我想显示它们。我如何获得这些堆栈跟踪?

最佳答案

来自org.springframework.batch.core.repository.dao.JdbcStepExecutionDao


  truncateExitDescription(stepExecution.getExitStatus()。getExitDescription())

07-24 15:13