Spring Batch - Pass parameter from Writer to Listener for afterJob(JobExecution jobExecution)
up vote
0
down vote
favorite
I have a writer from which I have a dynamic value that needs to be passed to JobExecutionListener's afterJob(JobExecution jobExecution)
. Would appreciate some advice. Thank you.
<beans:bean>
<job id="GoodJob">
<step id="XXX"
allow-start-if-complete="true"
parent="XXX">
<tasklet transaction-manager="XXX">
<chunk reader="READER"
writer="WRITER"
commit-interval="100"/>
</tasklet>
</step>
<listener>
<beans:bean class="class that implements JobExecutionListener">
<beans:constructor-arg name="value"
value="DEFAULT IS FALSE DURING INITIALIZATION/MIGHT GET CHANGED IN WRITER, GET THIS VALUE FROM WRITER"/>
</beans:bean>
</listener>
</job>
</beans:beans>
java spring spring-batch
add a comment |
up vote
0
down vote
favorite
I have a writer from which I have a dynamic value that needs to be passed to JobExecutionListener's afterJob(JobExecution jobExecution)
. Would appreciate some advice. Thank you.
<beans:bean>
<job id="GoodJob">
<step id="XXX"
allow-start-if-complete="true"
parent="XXX">
<tasklet transaction-manager="XXX">
<chunk reader="READER"
writer="WRITER"
commit-interval="100"/>
</tasklet>
</step>
<listener>
<beans:bean class="class that implements JobExecutionListener">
<beans:constructor-arg name="value"
value="DEFAULT IS FALSE DURING INITIALIZATION/MIGHT GET CHANGED IN WRITER, GET THIS VALUE FROM WRITER"/>
</beans:bean>
</listener>
</job>
</beans:beans>
java spring spring-batch
1
See here to get access to the execution context from the writer to put a value. Then get the value from the execution context in theafterJob()
'sjobExecution
parameter.
– Andrew S
Nov 9 at 19:07
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a writer from which I have a dynamic value that needs to be passed to JobExecutionListener's afterJob(JobExecution jobExecution)
. Would appreciate some advice. Thank you.
<beans:bean>
<job id="GoodJob">
<step id="XXX"
allow-start-if-complete="true"
parent="XXX">
<tasklet transaction-manager="XXX">
<chunk reader="READER"
writer="WRITER"
commit-interval="100"/>
</tasklet>
</step>
<listener>
<beans:bean class="class that implements JobExecutionListener">
<beans:constructor-arg name="value"
value="DEFAULT IS FALSE DURING INITIALIZATION/MIGHT GET CHANGED IN WRITER, GET THIS VALUE FROM WRITER"/>
</beans:bean>
</listener>
</job>
</beans:beans>
java spring spring-batch
I have a writer from which I have a dynamic value that needs to be passed to JobExecutionListener's afterJob(JobExecution jobExecution)
. Would appreciate some advice. Thank you.
<beans:bean>
<job id="GoodJob">
<step id="XXX"
allow-start-if-complete="true"
parent="XXX">
<tasklet transaction-manager="XXX">
<chunk reader="READER"
writer="WRITER"
commit-interval="100"/>
</tasklet>
</step>
<listener>
<beans:bean class="class that implements JobExecutionListener">
<beans:constructor-arg name="value"
value="DEFAULT IS FALSE DURING INITIALIZATION/MIGHT GET CHANGED IN WRITER, GET THIS VALUE FROM WRITER"/>
</beans:bean>
</listener>
</job>
</beans:beans>
java spring spring-batch
java spring spring-batch
asked Nov 9 at 18:55
Anton Kim
318213
318213
1
See here to get access to the execution context from the writer to put a value. Then get the value from the execution context in theafterJob()
'sjobExecution
parameter.
– Andrew S
Nov 9 at 19:07
add a comment |
1
See here to get access to the execution context from the writer to put a value. Then get the value from the execution context in theafterJob()
'sjobExecution
parameter.
– Andrew S
Nov 9 at 19:07
1
1
See here to get access to the execution context from the writer to put a value. Then get the value from the execution context in the
afterJob()
's jobExecution
parameter.– Andrew S
Nov 9 at 19:07
See here to get access to the execution context from the writer to put a value. Then get the value from the execution context in the
afterJob()
's jobExecution
parameter.– Andrew S
Nov 9 at 19:07
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
You can pass data between these two components through the job execution context. This is detailed in the Passing Data to Future Steps section. Here is a quick example:
import java.util.Arrays;
import java.util.List;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobExecutionListener;
import org.springframework.batch.core.JobParameters;
import org.springframework.batch.core.Step;
import org.springframework.batch.core.StepExecution;
import org.springframework.batch.core.annotation.BeforeStep;
import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing;
import org.springframework.batch.core.configuration.annotation.JobBuilderFactory;
import org.springframework.batch.core.configuration.annotation.StepBuilderFactory;
import org.springframework.batch.core.launch.JobLauncher;
import org.springframework.batch.item.ExecutionContext;
import org.springframework.batch.item.ItemReader;
import org.springframework.batch.item.ItemWriter;
import org.springframework.batch.item.support.ListItemReader;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
@EnableBatchProcessing
public class MyJob
@Autowired
private JobBuilderFactory jobs;
@Autowired
private StepBuilderFactory steps;
@Bean
public ItemReader<Integer> itemReader()
return new ListItemReader<>(Arrays.asList(1, 2, 3, 4));
@Bean
public ItemWriter<Integer> itemWriter()
return new ItemWriter<Integer>()
private StepExecution stepExecution;
@Override
public void write(List<? extends Integer> items) throws Exception
for (Integer item : items)
System.out.println("item = " + item);
stepExecution.getJobExecution().getExecutionContext().put("data", "foo");
@BeforeStep
public void saveStepExecution(StepExecution stepExecution)
this.stepExecution = stepExecution;
;
@Bean
public Step step()
return steps.get("step")
.<Integer, Integer>chunk(2)
.reader(itemReader())
.writer(itemWriter())
.build();
@Bean
public Job job()
return jobs.get("job")
.start(step())
.listener(new JobExecutionListener()
@Override
public void beforeJob(JobExecution jobExecution)
@Override
public void afterJob(JobExecution jobExecution)
ExecutionContext executionContext = jobExecution.getExecutionContext();
String data = executionContext.getString("data");
System.out.println("data from writer = " + data);
)
.build();
public static void main(String args) throws Exception
ApplicationContext context = new AnnotationConfigApplicationContext(MyJob.class);
JobLauncher jobLauncher = context.getBean(JobLauncher.class);
Job job = context.getBean(Job.class);
jobLauncher.run(job, new JobParameters());
In this example, the writer writes the key data
with value foo
in the job execution context. Then, this key is retrieved from the execution context in the job listener.
Hope this helps.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
You can pass data between these two components through the job execution context. This is detailed in the Passing Data to Future Steps section. Here is a quick example:
import java.util.Arrays;
import java.util.List;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobExecutionListener;
import org.springframework.batch.core.JobParameters;
import org.springframework.batch.core.Step;
import org.springframework.batch.core.StepExecution;
import org.springframework.batch.core.annotation.BeforeStep;
import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing;
import org.springframework.batch.core.configuration.annotation.JobBuilderFactory;
import org.springframework.batch.core.configuration.annotation.StepBuilderFactory;
import org.springframework.batch.core.launch.JobLauncher;
import org.springframework.batch.item.ExecutionContext;
import org.springframework.batch.item.ItemReader;
import org.springframework.batch.item.ItemWriter;
import org.springframework.batch.item.support.ListItemReader;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
@EnableBatchProcessing
public class MyJob
@Autowired
private JobBuilderFactory jobs;
@Autowired
private StepBuilderFactory steps;
@Bean
public ItemReader<Integer> itemReader()
return new ListItemReader<>(Arrays.asList(1, 2, 3, 4));
@Bean
public ItemWriter<Integer> itemWriter()
return new ItemWriter<Integer>()
private StepExecution stepExecution;
@Override
public void write(List<? extends Integer> items) throws Exception
for (Integer item : items)
System.out.println("item = " + item);
stepExecution.getJobExecution().getExecutionContext().put("data", "foo");
@BeforeStep
public void saveStepExecution(StepExecution stepExecution)
this.stepExecution = stepExecution;
;
@Bean
public Step step()
return steps.get("step")
.<Integer, Integer>chunk(2)
.reader(itemReader())
.writer(itemWriter())
.build();
@Bean
public Job job()
return jobs.get("job")
.start(step())
.listener(new JobExecutionListener()
@Override
public void beforeJob(JobExecution jobExecution)
@Override
public void afterJob(JobExecution jobExecution)
ExecutionContext executionContext = jobExecution.getExecutionContext();
String data = executionContext.getString("data");
System.out.println("data from writer = " + data);
)
.build();
public static void main(String args) throws Exception
ApplicationContext context = new AnnotationConfigApplicationContext(MyJob.class);
JobLauncher jobLauncher = context.getBean(JobLauncher.class);
Job job = context.getBean(Job.class);
jobLauncher.run(job, new JobParameters());
In this example, the writer writes the key data
with value foo
in the job execution context. Then, this key is retrieved from the execution context in the job listener.
Hope this helps.
add a comment |
up vote
1
down vote
accepted
You can pass data between these two components through the job execution context. This is detailed in the Passing Data to Future Steps section. Here is a quick example:
import java.util.Arrays;
import java.util.List;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobExecutionListener;
import org.springframework.batch.core.JobParameters;
import org.springframework.batch.core.Step;
import org.springframework.batch.core.StepExecution;
import org.springframework.batch.core.annotation.BeforeStep;
import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing;
import org.springframework.batch.core.configuration.annotation.JobBuilderFactory;
import org.springframework.batch.core.configuration.annotation.StepBuilderFactory;
import org.springframework.batch.core.launch.JobLauncher;
import org.springframework.batch.item.ExecutionContext;
import org.springframework.batch.item.ItemReader;
import org.springframework.batch.item.ItemWriter;
import org.springframework.batch.item.support.ListItemReader;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
@EnableBatchProcessing
public class MyJob
@Autowired
private JobBuilderFactory jobs;
@Autowired
private StepBuilderFactory steps;
@Bean
public ItemReader<Integer> itemReader()
return new ListItemReader<>(Arrays.asList(1, 2, 3, 4));
@Bean
public ItemWriter<Integer> itemWriter()
return new ItemWriter<Integer>()
private StepExecution stepExecution;
@Override
public void write(List<? extends Integer> items) throws Exception
for (Integer item : items)
System.out.println("item = " + item);
stepExecution.getJobExecution().getExecutionContext().put("data", "foo");
@BeforeStep
public void saveStepExecution(StepExecution stepExecution)
this.stepExecution = stepExecution;
;
@Bean
public Step step()
return steps.get("step")
.<Integer, Integer>chunk(2)
.reader(itemReader())
.writer(itemWriter())
.build();
@Bean
public Job job()
return jobs.get("job")
.start(step())
.listener(new JobExecutionListener()
@Override
public void beforeJob(JobExecution jobExecution)
@Override
public void afterJob(JobExecution jobExecution)
ExecutionContext executionContext = jobExecution.getExecutionContext();
String data = executionContext.getString("data");
System.out.println("data from writer = " + data);
)
.build();
public static void main(String args) throws Exception
ApplicationContext context = new AnnotationConfigApplicationContext(MyJob.class);
JobLauncher jobLauncher = context.getBean(JobLauncher.class);
Job job = context.getBean(Job.class);
jobLauncher.run(job, new JobParameters());
In this example, the writer writes the key data
with value foo
in the job execution context. Then, this key is retrieved from the execution context in the job listener.
Hope this helps.
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
You can pass data between these two components through the job execution context. This is detailed in the Passing Data to Future Steps section. Here is a quick example:
import java.util.Arrays;
import java.util.List;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobExecutionListener;
import org.springframework.batch.core.JobParameters;
import org.springframework.batch.core.Step;
import org.springframework.batch.core.StepExecution;
import org.springframework.batch.core.annotation.BeforeStep;
import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing;
import org.springframework.batch.core.configuration.annotation.JobBuilderFactory;
import org.springframework.batch.core.configuration.annotation.StepBuilderFactory;
import org.springframework.batch.core.launch.JobLauncher;
import org.springframework.batch.item.ExecutionContext;
import org.springframework.batch.item.ItemReader;
import org.springframework.batch.item.ItemWriter;
import org.springframework.batch.item.support.ListItemReader;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
@EnableBatchProcessing
public class MyJob
@Autowired
private JobBuilderFactory jobs;
@Autowired
private StepBuilderFactory steps;
@Bean
public ItemReader<Integer> itemReader()
return new ListItemReader<>(Arrays.asList(1, 2, 3, 4));
@Bean
public ItemWriter<Integer> itemWriter()
return new ItemWriter<Integer>()
private StepExecution stepExecution;
@Override
public void write(List<? extends Integer> items) throws Exception
for (Integer item : items)
System.out.println("item = " + item);
stepExecution.getJobExecution().getExecutionContext().put("data", "foo");
@BeforeStep
public void saveStepExecution(StepExecution stepExecution)
this.stepExecution = stepExecution;
;
@Bean
public Step step()
return steps.get("step")
.<Integer, Integer>chunk(2)
.reader(itemReader())
.writer(itemWriter())
.build();
@Bean
public Job job()
return jobs.get("job")
.start(step())
.listener(new JobExecutionListener()
@Override
public void beforeJob(JobExecution jobExecution)
@Override
public void afterJob(JobExecution jobExecution)
ExecutionContext executionContext = jobExecution.getExecutionContext();
String data = executionContext.getString("data");
System.out.println("data from writer = " + data);
)
.build();
public static void main(String args) throws Exception
ApplicationContext context = new AnnotationConfigApplicationContext(MyJob.class);
JobLauncher jobLauncher = context.getBean(JobLauncher.class);
Job job = context.getBean(Job.class);
jobLauncher.run(job, new JobParameters());
In this example, the writer writes the key data
with value foo
in the job execution context. Then, this key is retrieved from the execution context in the job listener.
Hope this helps.
You can pass data between these two components through the job execution context. This is detailed in the Passing Data to Future Steps section. Here is a quick example:
import java.util.Arrays;
import java.util.List;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobExecutionListener;
import org.springframework.batch.core.JobParameters;
import org.springframework.batch.core.Step;
import org.springframework.batch.core.StepExecution;
import org.springframework.batch.core.annotation.BeforeStep;
import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing;
import org.springframework.batch.core.configuration.annotation.JobBuilderFactory;
import org.springframework.batch.core.configuration.annotation.StepBuilderFactory;
import org.springframework.batch.core.launch.JobLauncher;
import org.springframework.batch.item.ExecutionContext;
import org.springframework.batch.item.ItemReader;
import org.springframework.batch.item.ItemWriter;
import org.springframework.batch.item.support.ListItemReader;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
@EnableBatchProcessing
public class MyJob
@Autowired
private JobBuilderFactory jobs;
@Autowired
private StepBuilderFactory steps;
@Bean
public ItemReader<Integer> itemReader()
return new ListItemReader<>(Arrays.asList(1, 2, 3, 4));
@Bean
public ItemWriter<Integer> itemWriter()
return new ItemWriter<Integer>()
private StepExecution stepExecution;
@Override
public void write(List<? extends Integer> items) throws Exception
for (Integer item : items)
System.out.println("item = " + item);
stepExecution.getJobExecution().getExecutionContext().put("data", "foo");
@BeforeStep
public void saveStepExecution(StepExecution stepExecution)
this.stepExecution = stepExecution;
;
@Bean
public Step step()
return steps.get("step")
.<Integer, Integer>chunk(2)
.reader(itemReader())
.writer(itemWriter())
.build();
@Bean
public Job job()
return jobs.get("job")
.start(step())
.listener(new JobExecutionListener()
@Override
public void beforeJob(JobExecution jobExecution)
@Override
public void afterJob(JobExecution jobExecution)
ExecutionContext executionContext = jobExecution.getExecutionContext();
String data = executionContext.getString("data");
System.out.println("data from writer = " + data);
)
.build();
public static void main(String args) throws Exception
ApplicationContext context = new AnnotationConfigApplicationContext(MyJob.class);
JobLauncher jobLauncher = context.getBean(JobLauncher.class);
Job job = context.getBean(Job.class);
jobLauncher.run(job, new JobParameters());
In this example, the writer writes the key data
with value foo
in the job execution context. Then, this key is retrieved from the execution context in the job listener.
Hope this helps.
answered Nov 9 at 19:06
Mahmoud Ben Hassine
3,2501713
3,2501713
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53231769%2fspring-batch-pass-parameter-from-writer-to-listener-for-afterjobjobexecution%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
See here to get access to the execution context from the writer to put a value. Then get the value from the execution context in the
afterJob()
'sjobExecution
parameter.– Andrew S
Nov 9 at 19:07