Does Spring Batch framework provide a component to retrieve the last successful run date for a specific job? Or do I have to manually query the BATCH_JOB_EXECUTION and BATCH_JOB_INSTANCE table?
Thanks
Does Spring Batch framework provide a component to retrieve the last successful run date for a specific job? Or do I have to manually query the BATCH_JOB_EXECUTION and BATCH_JOB_INSTANCE table?
Thanks
Perhaps you can query for last job executions via JobService interface and check the status; or retrieve all of them via JobExplorer. I suppose there is no specific method for that...