java에서 데이터 조회 시 특정 데이터에서만 아래와 같은 오류가 발생하였다. JsonParseException: Illegal unquoted character ((CTRL-CHAR, code 10)): has to be escaped using backslash to be included in string. The reason is because ctrl-char is included in the JSON string. 디버깅을 해보니, 특정 구문 실행 시 이러한 에러가 발생하는 것을 확인할 수 있었다. ObjectMapper objectMapper = new ObjectMapper(); HashMap userParamCttMap = objectMapper.readValue(userParamCtt, ..