728x90
All batch processing can be described in its most simple form as reading in large amounts of data, performing some type of calculation or transformation, and writing the result out. Spring Batch provides three key interfaces to help perform bulk reading and writing: ItemReader, ItemProcessor, and ItemWriter.
Section Summary
- [ItemReader](<https://docs.spring.io/spring-batch/reference/readers-and-writers/item-reader.html>)
- [ItemWriter](<https://docs.spring.io/spring-batch/reference/readers-and-writers/item-writer.html>)
- [ItemStream](<https://docs.spring.io/spring-batch/reference/readers-and-writers/item-stream.html>)
- The Delegate Pattern and Registering with the Step
- Flat Files
- XML Item Readers and Writers
- JSON Item Readers And Writers
- Multi-File Input
- Database
- Reusing Existing Services
- Preventing State Persistence
- Creating Custom ItemReaders and ItemWriters
- Item Reader and Writer Implementations
'Java > Spring Boot JPA' 카테고리의 다른 글
Builder and AllArgsConstructor Annotation (31) | 2024.04.02 |
---|---|
Item Processing in Spring Batch (0) | 2024.04.01 |
SpringBatch에서 JobLauncher 동기/비동기 실행 (0) | 2024.03.27 |
누구나 할 수 있는 10배 더 빠른 배치 만들기 (2) | 2024.03.27 |
MySQL and JPA Paging (0) | 2024.03.25 |