本文介紹了步驟內彈簧批量取數作業參數的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我有以下Spring批處理作業配置:
@Configuration
@EnableBatchProcessing
public class JobConfig {
@Autowired
private JobBuilderFactory jobBuilderFactory;
@Autowired
private StepBuilderFactory stepBuilderFactory;
@Bean
public Job job() {
return jobBuilderFactory.get("job")
.flow(stepA()).on("FAILED").to(stepC())
.from(stepA()).on("*").to(stepB()).next(stepC())
.end().build();
}
@Bean
public Step stepA() {
return stepBuilderFactory.get("stepA").tasklet(new RandomFailTasket("stepA")).build();
}
@Bean
public Step stepB() {
return stepBuilderFactory.get("stepB").tasklet(new PrintTextTasklet("stepB")).build();
}
@Bean
public Step stepC() {
return stepBuilderFactory.get("stepC").tasklet(new PrintTextTasklet("stepC")).build();
}
}
我使用以下代碼開始作業:
try {
Map<String,JobParameter> parameters = new HashMap<>();
JobParameter ccReportIdParameter = new JobParameter("03061980");
parameters.put("ccReportId", ccReportIdParameter);
jobLauncher.run(job, new JobParameters(parameters));
} catch (JobExecutionAlreadyRunningException | JobRestartException | JobInstanceAlreadyCompleteException
| JobParametersInvalidException e) {
e.printStackTrace();
}
如何從作業步驟訪問ccReportId
參數?
推薦答案
Tasklet.execute()
方法帶參數ChunkContext
,Spring Batch注入所有元數據。因此您只需通過以下元數據結構挖洞傳入作業參數:
chunkContext.getStepContext().getStepExecution()
.getJobParameters().getString("ccReportId");
或其他選項是通過以下方式訪問作業參數映射:
chunkContext.getStepContext().getJobParameters().get("ccReportId");
但這會給您Object
,您需要將其轉換為字符串。
這篇關于步驟內彈簧批量取數作業參數的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,