Hello everyone, if someone could help me. I have a...
# jackson-kotlin
g
Hello everyone, if someone could help me. I have a class like this:
Copy code
data class MyClass(val data1: Data1,
                    val data2: List<Data2>) {
}
I’m serializing like this:
Copy code
jsonMapper.writeValueAsString(entity.myClass)
And when i try to deserialise i get this:
JsonMappingException: No suitable constructor found for type
have i missed something?