gpt4 book ai didi

spring - 如何在 Spring Batch 中获取 ItemWriter 中的 jobId

转载 作者:行者123 更新时间:2023-12-02 04:51:46 31 4
gpt4 key购买 nike

是否可以在 Spring Batch 中获取 ItemWriter 中的 jobId 或 JobName。

我读到了late binding但不确定如何使用它在 Item Writer 中获取作业名称或作业 ID。

我将我的编写器配置为

    <bean id="myWriter" ref="com.eg.man.EodWriter" scope="step">
<property name="jobInstanceId" value="#{stepExecution.jobExecution.jobId}"/>
</bean>

但我不知道如何在编写器类中使用它来获取值(value)。

编辑我还发现了 this链接说你可以在 Write 中获取 id,但又如何在 writer 类中使用它

最佳答案

我不知道你的方法是用 xml 来实现的,但我会这样做:

您需要向您的类(无论是编写器还是读取器)添加一个字段和一个方法,例如

private Long jobId;

@BeforeStep
public void getInterstepData(StepExecution stepExecution) {
JobExecution jobExecution = stepExecution.getJobExecution();
this.jobId = jobExecution.getJobId();
}

在这种情况下,该方法将在该步骤之前调用,并且可以通过该字段访问 id。

希望有帮助。

关于spring - 如何在 Spring Batch 中获取 ItemWriter 中的 jobId,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21777122/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com