cannot deserialize from Object value (no delegate- or property-based Creator)]
·
Language/Kotlin
에러 발생개발하면서 다음과 같은 에러가 발생했다.JSON parse error: Cannot construct instance of org.example.springai.dto.AiChatRequest (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator)] 아래와 같이 생성자가 하나일 때 발생한 에러.data class AiChatRequest( val userInput: String)Jackson이 객체를 역직렬화할 때는 두 가지 전략을 사용하여 데이터를 객체로 변환한다.Delegating-based: 하나의 값(예: 문자열, 숫자 등)만을 ..