An open API service indexing awesome lists of open source software.

https://github.com/da-nyee/spring-batch-learning-test

Spring Batch 학습 테스트를 위한 저장소
https://github.com/da-nyee/spring-batch-learning-test

java spring spring-batch

Last synced: about 2 months ago
JSON representation

Spring Batch 학습 테스트를 위한 저장소

Awesome Lists containing this project

README

          

# spring-batch-learning-test
Spring Batch 학습 테스트를 위한 저장소


## Notes
### 1.
- JobParameters에 사용할 수 있는 자료형은 Long, Double, String, Date이다.
- 아쉽게도 LocalDate, LocalDateTime은 지원하지 않아, String으로 받아 형변환을 해야 한다.

### 2.
- Chunk Size한번에 처리되는 트랜잭션 단위이다.
- Page Size한번에 조회되는 데이터 양이다.


## References
### Read
- [1. Spring Batch 가이드 - 배치 어플리케이션이란?](https://jojoldu.tistory.com/324)
- [6. Spring Batch 가이드 - Chunk 지향 처리](https://jojoldu.tistory.com/331)
- [Spring Batch에서 영속성 컨텍스트 문제 (processor에서 lazyException 발생할때)](https://jojoldu.tistory.com/146)

### Write
- [2. Spring Batch 가이드 - Batch Job 실행해보기](https://jojoldu.tistory.com/325)
- [3. Spring Batch 가이드 - 메타테이블엿보기](https://jojoldu.tistory.com/326)
- [4. Spring Batch 가이드 - Spring Batch Job Flow](https://jojoldu.tistory.com/328)
- [5. Spring Batch 가이드 - Spring Batch Scope & Job Parameter](https://jojoldu.tistory.com/330)