Bạn có chắc chắn muốn xóa bài viết này không ?
Bạn có chắc chắn muốn xóa bình luận này không ?
How to use Intercepting Job Execution in Spring Batch
https://grokonez.com/spring-framework/spring-batch/use-intercepting-job-execution-spring-batch
How to use Intercepting Job Execution in Spring Batch
For Intercepting Job Execution feature, Spring Batch provides an interface called JobExecutionListener to notify events in a Job lifecycle. So in the tutorial, JavaSampleApproach will guide how to configure Intercepting Job Execution with JobExecutionListener.
Related Posts:
- How to start with Spring Batch using Spring Boot – Java Config
- Spring Batch XML Config by Spring Boot
- How to use Spring Batch Inheritance function
I. Technologies
– Java 1.8
– Maven 3.3.9
– Spring Tool Suite – Version 3.8.1.RELEASE
– Spring Boot: 1.5.1.RELEASE
-
MySQL Database 1.4
II. Intercepting Job Execution
For Intercepting Job Execution, Spring Batch provides an interface JobExecutionListener:
public interface JobExecutionListener {
void beforeJob(JobExecution jobExecution);
void afterJob(JobExecution jobExecution);
}
Function void beforeJob(JobExecution jobExecution)
: is invoked before a job executes.
Function void afterJob(JobExecution jobExecution)
: is invoked after completion of a job.
https://grokonez.com/spring-framework/spring-batch/use-intercepting-job-execution-spring-batch
How to use Intercepting Job Execution in Spring Batch




