springboot
-
순단과 같은 네트워크 에러가 가끔 발생하는 부분에 대한 처리를 어떻게 해야 할지 고민하는 도중 spring-retry를 발견하게 되었고, 간편하게 retry 로직을 수행할 수 있을 것 같아 학습하고 적용해 보았다. Spring project https://github.com/spring-projects/spring-retry Dependency implementation("org.springframework.retry:spring-retry") implementation("org.springframework:spring-aspects") @EnableRetry @Configuration @EnableRetry public class MyConfig { ... } @Retryable @Retryable( ..
[Spring] spring-retry 재시도 with TestCode순단과 같은 네트워크 에러가 가끔 발생하는 부분에 대한 처리를 어떻게 해야 할지 고민하는 도중 spring-retry를 발견하게 되었고, 간편하게 retry 로직을 수행할 수 있을 것 같아 학습하고 적용해 보았다. Spring project https://github.com/spring-projects/spring-retry Dependency implementation("org.springframework.retry:spring-retry") implementation("org.springframework:spring-aspects") @EnableRetry @Configuration @EnableRetry public class MyConfig { ... } @Retryable @Retryable( ..
2024.03.23 -
dependency 추가 implementation 'org.springframework.kafka:spring-kafka' application.yml 설정 spring: kafka: bootstrap-servers: - "127.0.0.1:9092" producer: value-serializer: org.springframework.kafka.support.serializer.JsonSerializer properties: interceptor.classes: com.test.api.config.kafka.KafkaProducerInterceptor consumer: value-deserializer: org.springframework.kafka.support.serializer.ErrorHand..
[Kafka] SpringBoot+Kafka 연동dependency 추가 implementation 'org.springframework.kafka:spring-kafka' application.yml 설정 spring: kafka: bootstrap-servers: - "127.0.0.1:9092" producer: value-serializer: org.springframework.kafka.support.serializer.JsonSerializer properties: interceptor.classes: com.test.api.config.kafka.KafkaProducerInterceptor consumer: value-deserializer: org.springframework.kafka.support.serializer.ErrorHand..
2024.01.31