File tree 3 files changed +46
-2
lines changed
선착순처리/consumer/src/main/java/com/example/consumer
3 files changed +46
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import com .example .consumer .domain .Coupon ;
4
4
import com .example .consumer .repository .CouponRepository ;
5
+ import com .example .consumer .repository .FailedEventRepository ;
6
+ import org .slf4j .Logger ;
7
+ import org .slf4j .LoggerFactory ;
5
8
import org .springframework .kafka .annotation .KafkaListener ;
6
9
import org .springframework .stereotype .Component ;
7
10
8
11
@ Component
9
12
public class CouponCreatedConsumer {
10
13
11
14
private final CouponRepository couponRepository ;
15
+ private final FailedEventRepository failedEventRepository ;
16
+ private final Logger logger = LoggerFactory .getLogger (CouponCreatedConsumer .class );
12
17
13
- public CouponCreatedConsumer (CouponRepository couponRepository ) {
18
+ public CouponCreatedConsumer (CouponRepository couponRepository , FailedEventRepository failedEventRepository ) {
14
19
this .couponRepository = couponRepository ;
20
+ this .failedEventRepository = failedEventRepository ;
15
21
}
16
22
17
23
@ KafkaListener (topics = "coupon_create" , groupId = "group_1" )
18
24
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
+
20
31
}
21
32
22
33
Original file line number Diff line number Diff line change
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 number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments