的Bonjour,
如果在我的读者中,测试返回true,我需要停止运行弹簧批处理失败状态。我怎样才能做到这一点 ? 我实际上使用System.exit(-1),但我认为spring批处理有自己的方式来停止运行具有不同状态的批处理。
这是我的阅读器中的功能,我想从中停止批处理:
private List<Test> getListTest() throws Exception {
...
if (stop) {
logger.error("Stop running batch");
System.exit(-1);
return null;
}
...
}
Merci etbonnejournée
答案 0 :(得分:1)
有两种方法可以使弹簧批处理作业失败。