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
- avo
- aws
- statestore
- schema registry
- springboot
- Slick
- scala
- kafka streams
- Elk
- scala 2.10
- spring-cloud-stream
- RabbitMQ
- confluent
- kafka interactive query
- kafkastreams
- 카프카
- gradle
- 한빛미디어
- kafkastream
- Elasticsearch
- spring-kafka
- spring-batch
- coursera
- Spring
- Kafka
- reactive
- 플레이 프레임워크
- Logstash
- play framework
- enablekafkastreams
Archives
- Today
- Total
목록잡파라미터 (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