상황 webclient를 이용하여 API를 호출하고 응답을 Map 형태로 반환함 - 처음 에러 발생한 코드 public Map getResponse(Map params) { try { Map result = this.webClient.post() .uri("{{api 호출 url}}") .body(BodyInserters.fromValue(params)) .retrieve() .bodyToMono(Map.class) .block(); return result; } catch (Exception e) { log.error("[getResponse] Cause: {}", e.getMessage()); return null; } } 이때 api 호출 시 "Non-standard token 'NaN': enab..