1. 에러 메시지 Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation] 2. 원인 - PaymentController 1 2 3 4 5 6 7 8 9 10 11 12 @PostMapping("/new") @ResponseBody public ResponseEntity savePayment(@RequestBody PaymentRequest paymentRequest) { log.info("Payment controller: /api/payment/new ---------------------"); // // 빌링키 발급에 실패한 경우 if (billingKey..