Skip to content

Commit 0acd637

Browse files
committed
kafka consumer exception handling
1 parent f944795 commit 0acd637

File tree

3 files changed

+46
-2
lines changed

3 files changed

+46
-2
lines changed

선착순처리/consumer/src/main/java/com/example/consumer/consumer/CouponCreatedConsumer.java

+13-2
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,32 @@
22

33
import com.example.consumer.domain.Coupon;
44
import com.example.consumer.repository.CouponRepository;
5+
import com.example.consumer.repository.FailedEventRepository;
6+
import org.slf4j.Logger;
7+
import org.slf4j.LoggerFactory;
58
import org.springframework.kafka.annotation.KafkaListener;
69
import org.springframework.stereotype.Component;
710

811
@Component
912
public class CouponCreatedConsumer {
1013

1114
private final CouponRepository couponRepository;
15+
private final FailedEventRepository failedEventRepository;
16+
private final Logger logger = LoggerFactory.getLogger(CouponCreatedConsumer.class);
1217

13-
public CouponCreatedConsumer(CouponRepository couponRepository) {
18+
public CouponCreatedConsumer(CouponRepository couponRepository, FailedEventRepository failedEventRepository) {
1419
this.couponRepository = couponRepository;
20+
this.failedEventRepository = failedEventRepository;
1521
}
1622

1723
@KafkaListener(topics = "coupon_create", groupId = "group_1")
1824
public void listener(Long userId) {
19-
couponRepository.save(new Coupon(userId));
25+
try {
26+
couponRepository.save(new Coupon(userId));
27+
} catch (Exception e) {
28+
logger.error("failed to create coupon::" + userId);
29+
}
30+
2031
}
2132

2233

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
package com.example.consumer.domain;
2+
3+
import jakarta.persistence.Column;
4+
import jakarta.persistence.Entity;
5+
import jakarta.persistence.GeneratedValue;
6+
import jakarta.persistence.Id;
7+
8+
@Entity
9+
public class FailedEvent {
10+
11+
@Id
12+
@GeneratedValue
13+
@Column(name = "failed_event_id")
14+
private Long id;
15+
16+
private Long userId;
17+
18+
public FailedEvent() {
19+
20+
}
21+
22+
public FailedEvent(Long userId) {
23+
this.userId = userId;
24+
}
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package com.example.consumer.repository;
2+
3+
4+
import com.example.consumer.domain.FailedEvent;
5+
import org.springframework.data.jpa.repository.JpaRepository;
6+
7+
public interface FailedEventRepository extends JpaRepository<FailedEvent, Long> {
8+
}

0 commit comments

Comments
 (0)