关于springBatch中JobInstanceAlreadyCompleteException错误的解决方法。

org.springframework.batch.core.repository.JobInstanceAlreadyCompleteException: A job instance already exists and is complete for p arameters={}. If you want to run this job again, change the parameters

根据错误提示,job的实例已经存在,并且已经完成。如果想再次运行这个job,需要更改参数。

使用JobLauncher中的run(Job job, JobParameters jobParameters)方法启动job。其第二个参数就是需要传入job的参数,在JobParameters中传入一个当前时间的参数,其参数必然会改变。

代码如下:

jobLauncher.run(job, new JobParametersBuilder()
                                .addDate("date", new Date())
                                .toJobParameters());

其中,第一个参数是你创建的job。

 

如需源码请留言,可提供源码地址。(发表博客时还未整理好源码)

你可能感兴趣的:(SpringBatch,SpringBatch)