일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- statestore
- spring-batch
- confluent
- schema registry
- 한빛미디어
- springboot
- aws
- coursera
- scala
- 카프카
- kafka interactive query
- spring-kafka
- scala 2.10
- kafka streams
- avo
- Slick
- Logstash
- kafkastreams
- play framework
- gradle
- RabbitMQ
- Kafka
- enablekafkastreams
- 플레이 프레임워크
- reactive
- spring-cloud-stream
- Spring
- Elasticsearch
- kafkastream
- Elk
- Today
- Total
목록spring framework (20)
b
단순히, Batch모듈을 쓰고 있다가. Integration과 함께 무엇을 할 것인가에 대한 고민중이다.앞서, 이전 프로젝트에서는 Batch가 어떻게 얼마나 잘 돌았는지 보려고 Batch Admin이라는 유틸성 프로젝트를 연결해보았다. 내가 쓰던 JobRepository를 연결하고, 실행하면 내 잡들 목록과, BatchAdmin의 기본 잡 2개가 리스트에 나온다. 각 Job의 실행값들과 결과를 알수있고, Step단계로도 확인할 수 있다.Step 까지 클릭해서 들어가면 Exit Message도 볼수 있어 배치 실패 이슈를 쉽게 파악할 수 있다. 문제는....1. 기존의 신규 배치가 아직, 잘 돌아가는 구 배치들이 JobRepository에 맞춰서 (기존 logfile이 아닌, remote log를 쌓아줘야..
SpringOne2GX 2012 컨퍼런스 후기 나눔 세미나 #1. SpringSpring 3.1 (Dec.2011) - beans profile 기능 -- 으로 설정 -- 자바코드, System환경변수 -Dspring.profile.action="test", web.xml 에서 설정가능 총 3가지 - Java-based Configuration -- Type safe (컴파일시 오류 확인) -- Bean 생성에서 로직을 추가할 수 있음 (동적 구성) - servlet3.0 -- 스펙중 하나 : 필터/서블릿/리스너 등을 자동 스캔할 수 있다. (기존에는 web.xml에 종속적) - cache by annotation -- 파라미터 기반으로 캐싱기능 Spring 3.2 (Dec.2012)- Groovy 기반..
휴가중(진짜 심심해서 쓰는 ) 포스팅. 작성중 JobLauncher 의 유일한 구현체 SimpleJobLauncher이다. 1. 유일한 public method 'run'을 보면 Job , JobParameters 를 아귀먼트로 받는것을 확인할 수 이고, return 은 JobExecution이다. 2. JobExecution은 Entity를 상속받는 상태를 나타내는 클래스라 생각해도 된다. /* * Copyright 2006-2008 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance wit..
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..