我正在开发一个Spring Batch应用程序。我将这个应用程序部署在生产Linux服务器上,作为一个微开文件,并作为一个普通的jar应用程序运行。我的Spring Batch应用程序已启动并正在运行,实际上我的UpdateInfoBatch-0.0.1-SNAPSHOT.jar似乎已启动并作为进程运行:
webadmin@webadmin.myserver.it [~]# ps aux | grep java
webadmin 4677 0.1 3.2 10255180 809528 ? Sl Nov17 12:10 java -jar UpdateInfoBatch-0.0.1-SNAPSHOT.jar
webadmin 5152 0.0 0.0 112812 980 pts/1 S+ 09:58 0:00 grep --color=auto java
我的应用程序包含两个使用CRON表达式在特定时间安排的作业定义:
/**
* This bean schedules and runs our Spring Batch job.
*/
@Component
@Profile("!test")
public class SpringBatchExampleJobLauncher {
private static final Logger LOGGER = LoggerFactory.getLogger(SpringBatchExampleJobLauncher.class);
@Autowired
@Qualifier("launcher")
private JobLauncher jobLauncher;
@Autowired
@Qualifier("updateNotaryDistrictsJob")
private Job updateNotaryDistrictsJob;
@Autowired
@Qualifier("updateNotaryListInfoJob")
private Job updateNotaryListInfoJob;
@Scheduled(cron = "${cron.expresion.runUpdateNotaryListInfoJob}")
public void runUpdateNotaryListInfoJob() {
LOGGER.info("SCHEDULED run of updateNotaryListInfoJob STARTED");
Map<String, JobParameter> confMap = new HashMap<>();
confMap.put("time", new JobParameter(System.currentTimeMillis()));
JobParameters jobParameters = new JobParameters(confMap);
try {
jobLauncher.run(updateNotaryListInfoJob, jobParameters);
}catch (Exception ex){
LOGGER.error(ex.getMessage());
}
}
@Scheduled(cron = "${cron.expresion.runUpdateNotaryDistrictJob}")
public void runUpdateNotaryDistrictsJob() {
LOGGER.info("SCHEDULED run of updateNotaryDistrictsJob STARTED");
Map<String, JobParameter> confMap = new HashMap<>();
confMap.put("time", new JobParameter(System.currentTimeMillis()));
JobParameters jobParameters = new JobParameters(confMap);
try {
jobLauncher.run(updateNotaryDistrictsJob, jobParameters);
}catch (Exception ex){
LOGGER.error(ex.getMessage());
}
}
private JobParameters newExecution() {
Map<String, JobParameter> parameters = new HashMap<>();
JobParameter parameter = new JobParameter(new Date());
parameters.put("currentTime", parameter);
return new JobParameters(parameters);
}
}
现在,我想问是否有某种方法可以与这个正在运行的应用程序交互,以检查在这个应用程序中定义的作业的最后执行过程中是否发生了一些错误。是否可以查询我正在运行的应用程序,询问作业状态或类似的信息?
是的,您可以使用Spring Batch数据库表进行此操作。请查看此处的文档:https://docs.spring.io/spring-batch/docs/current/reference/html/schema-appendix.html