You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many spring-batch dao methods implementations have following validations:
Assert.notNull(jobExecution, "jobExecution cannot be null");
Assert.notNull(jobExecution.getJobId(), "JobExecution Job-Id cannot be null.");
Assert.notNull(jobExecution.getStatus(), "JobExecution status cannot be null.");
Assert.notNull(jobExecution.getCreateTime(), "JobExecution create time cannot be null");
Needs, to re-implement these in current project.
The text was updated successfully, but these errors were encountered:
Many spring-batch dao methods implementations have following validations:
Needs, to re-implement these in current project.
The text was updated successfully, but these errors were encountered: