microsoft / microsoft/durabletask-java
Jackson deserialization issue with Kotlin and data classes
Nadie ha tomado este issue todavía.
- Lenguaje dominante
- Java
- Estrellas
- 29
- Forks
- 18
- Merge medio
- 1 d 10 h
- PR fusionados (30 d)
- 2
Descripción
I have a simple durable orchestration function written in Kotlin who's input type is
data class OrchestratorInput(val value: String)
When I run my orchestration, it fails to deserialize JSON text into an instance of OrchestratorInput, probably because data classes in Kotlin does not have any no-arg constructor unless I assign default values to all fields of the class. The output of the orchestration is shown below, containing the error message:
{
"name": "OrchestrationFunction",
"instanceId": "f340b4b5-b04d-43a0-bd83-40a12ab419ec",
"runtimeStatus": "Failed",
"input": {
"value": "hello, world!"
},
"customStatus": "",
"output": "com.microsoft.durabletask.DataConverter$DataConverterException: Failed to deserialize the JSON text to org.example.OrchestratorInput. Detailed error message: Cannot construct instance of `org.example.OrchestratorInput` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator)\n at [Source: REDACTED (`StreamReadFeature.INCLUDE_SOURCE_IN_LOCATION` disabled); line: 1, column: 2]",
"createdTime": "2026-03-10T11:31:29Z",
"lastUpdatedTime": "2026-03-10T11:31:39Z"
}
Adding jackson-module-kotlin to build.gradle.kts did not help, although it helped when running the orchestration locally with Azurite
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.21.1")
For some reason the module is not picked up when running in Azure. Is there any way to fix this? Now I'm forced to assign default values to every field of every data class used as input or output of orchestration- and activity functions, which makes the code very verbose.
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Línea de trabajo
Comienza con build.gradle.kts y compara la configuración de dependencias utilizada con Azurite con la utilizada en Azure. Rastrea cómo se configura el durable task data converter para las cargas de trabajo de Kotlin desplegadas; se considera terminado cuando OrchestratorInput y clases de datos de Kotlin similares se deserializan en Azure sin valores de constructor predeterminados.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- java, kotlin
- Área
- backend, cloud
- Tipo de issue
- Error
- Dificultad
- 4/5
- Tiempo estimado
- 3-5 días
- Estado de actividad
- Estancado
- Claridad
- Bastante claro
- Aptitud para principiantes
- 42/100