Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@
import messaging.utils.EventLogger;
import messaging.utils.EventSerializer;
import org.apache.kafka.clients.consumer.ConsumerRecord;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import messaging.events.PaymentCompletedEvent;
import messaging.utils.EventSerializer;
import org.springframework.kafka.annotation.KafkaListener;
import org.springframework.stereotype.Component;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@
import messaging.utils.EventSerializer;
import org.springframework.kafka.core.KafkaTemplate;
import org.springframework.stereotype.Service;
import messaging.utils.EventSerializer;
import org.springframework.kafka.core.KafkaTemplate;
import org.springframework.stereotype.Service;
import messaging.events.PaymentCompletedEvent;
import messaging.topics.PaymentTopic;

@Service
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public ResponseEntity<CommonResponse<PaymentResponse>> requestPayment(@Valid @Re
.body(success(paymentApplicationService.requestPayment(userId, orderId)));
}

@Operation(summary = "결제 상태 확인")
@Operation(summary = "PG사 결제 상태 확인")
@GetMapping("/{paymentId}")
public ResponseEntity<CommonResponse<PaymentResponse>> checkPaymentStatus(@Valid @PathVariable("paymentId") UUID paymentId) {
return ResponseEntity
Expand Down