1. 에러 메시지 converter.HttpMessageNotWritableException: Could not write JSON: JsonObject] 2. 원인 - DevController 1 2 3 4 5 6 @GetMapping("codef/card-list") public ResponseEntity sendCardList(@RequestBody CardApproveHistoryDTO approveHistoryDTO) throws UnsupportedEncodingException { JsonObject response = codefService.getCardList(approveHistoryDTO); return new ResponseEntity(response, HttpStatus.OK); ..