我正在尝试运行面向分区的作业,并且无法访问stepExecutionContext存储的数据。这是我的工作定义
<batch:job id="job1" restartable="false" incrementer="idIncrementer">
<batch:step id="readwritestep" next="partitionStep">
<batch:tasklet transaction-manager="transactionManager">
<batch:chunk reader="reader1"
writer="writer1"
commit-interval="500"/>
</batch:tasklet>
<batch:listeners>
<batch:listener ref="promotionListener"/>
</batch:listeners>
</batch:step>
<batch:step id="partitionStep" >
<batch:partition step="detailsStep" partitioner="partitioner">
<batch:handler grid-size="10" task-executor="taskExecutor" />
</batch:partition>
</batch:step>
</batch:job>
<batch:step id="detailsStep">
<batch:tasklet transaction-manager="transactionManager">
<batch:chunk reader="reader2"
processor="processor"
writer="writer2"
commit-interval="1500"/>
</batch:tasklet>
</batch:step>
在处理readwritestep时,我将一些数据存储在步骤上下文中并提升到作业上下文,以便我可以在分区中访问。但是我实现的自定义分区器没有任何对父步骤的引用,我可以访问存储的数据...即使分区器绑定到STEP它也无法访问父步骤数据...我在这里遗漏了什么?一个选项分区器给出的是jdbctemplate来生成我不感兴趣的拆分器上下文。我试图注入@beforestep注释以获取访问上下文数据但它没有被调用..我不想执行JDBC读取以生成从数据...我想获取存储在步骤中的LIST数据/作业上下文执行并生成拆分器上下文...有人可以帮助我指出正确的方向,以便我可以访问该数据......
这是分区类......
public class ProductDetailsPartitioner implements Partitioner {
private List<Product> prds;
@Override
public Map<String, ExecutionContext> partition(int gridSize) {
List<String> referencIds = new ArrayList<String>();
for (Product prd : prds) {
referencIds.add(prd.getReferenceId());
}
Map<String, ExecutionContext> results = new LinkedHashMap<String,ExecutionContext>();
for (String referencId : referencIds) {
ExecutionContext context = new ExecutionContext();
context.put("referenceId", referencId);
results.put("partition." + referencId, context);
}
return results;
}
@BeforeStep
public void retrieveInterstepData(StepExecution stepExecution) {
System.out.println("Entered Before step in partion");
JobExecution jobExecution = stepExecution.getJobExecution();
ExecutionContext jobContext = jobExecution.getExecutionContext();
System.out.println("ExecutionContext"+jobContext);
this.prds = (List<Product>) jobContext.get("products");
}
}
答案 0 :(得分:0)
好的,我能够通过另一种方法传递这个问题。现在我基于jobid处理分区,而不是通过执行上下文传递引用。它运行良好。很难解释真正的解决方案,因为它是基于真实的业务需求。