Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- kafkastreams
- spring-kafka
- 플레이 프레임워크
- Spring
- coursera
- RabbitMQ
- 카프카
- schema registry
- reactive
- Kafka
- Elasticsearch
- Elk
- play framework
- aws
- spring-cloud-stream
- 한빛미디어
- Slick
- kafka streams
- avo
- statestore
- scala 2.10
- scala
- Logstash
- kafkastream
- confluent
- springboot
- kafka interactive query
- gradle
- enablekafkastreams
- spring-batch
Archives
- Today
- Total
목록JobParametersIncrementer (1)
b
JobParametersIncrementer의 사용.
Job Parameter를 자동으로 Increment 하기 위해서 사용.(Job의 구현체를 구분하는 방법은 Job + Job Parameter이기 때문에, Parameter없이는 같은 job을 계속 실행하면 안된다) @Component public class SimpleJobParametersIncrementer implements JobParametersIncrementer { static final SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd-hhmmss"); public JobParameters getNext(JobParameters parameters) { String id = format.format(new Date()); return n..
spring framework/spring-batch
2012. 8. 25. 12:54