| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
Tags
- Data Structure
- MySQL
- Proxy
- 알고리즘
- 자료구조
- IT
- C
- 디자인 패턴
- Java
- 자바
- 컴퓨터구조
- JavaScript
- Algorithm
- mongoDB
- redis
- JPA
- Galera Cluster
- spring webflux
- 파이썬
- 백준
- Kafka
- design pattern
- c언어
- OS
- 운영체제
- Spring
- MSA
- react
- Heap
- 네트워크
Archives
- Today
- Total
목록Spring Batch (1)
시냅스
Spring Boot 3++ 를 위한 Spring Batch migration 요약
이 글에서는 Spring 6, Spring boot 3++ 를 사용하면서 spring batch 5 로 업그레이드 할 때 migration 을 위한 내용을 요약합니다. 주로 사용 방법에 대해서만 상술하니 자세한 내용은 아래의 공식문서를 참고하시기 바랍니다. Job, Step v4 // Sample with v4 @Configuration @EnableBatchProcessing public class MyStepConfig { @Autowired private StepBuilderFactory stepBuilderFactory; @Autowired private JobBuilderFactory jobBuilderFactory; @Bean public Job myJob(Step step) { return ..
Java, Spring
2023. 11. 18. 16:04