SpringBatch系列入门之Tasklet
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBatch系列入门之Tasklet相关的知识,希望对你有一定的参考价值。
参考技术A Spring Batch是一个开源的批量处理框架,Spring Batch提供了类和API来读写资源,管理事务,作业处理统计、重启、以及分区技术处理大量数据。在Spring Batch中,一个作业任务可以由多个step组成,每个任务又都可以分为Read-Process-Write或者是tasklet最后不要忘记在启动类上加上注解 @EnableBatchProcessing
实现 JobExecutionListener 接口后在Job配置的地方增加一下listener即可,如下:
https://github.com/cattles/fucking-great-springbatch
1、[Spring Batch Sample]: https://github.com/spring-projects/spring-batch/tree/master/spring-batch-samples "Spring Batch Sample"
2、[Spring Boot Reference]: https://docs.spring.io/spring-batch/docs/4.2.x/reference/html/index.html "Spring Boot Reference"