You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ValueClassDeserializer::getBoxedNullValue is called only from the KotlinValueInstantiator.
This causes deserialization to fail as per the subject.
@JvmInline
value classNullableObject(valv:String?)
val result = mapper.readValue<NullableObject>("null")
This problem can be avoided by implementing getNullValue to the inherent ValueClassDeserializer.
However, the general implementation of Kogera does not use getNullValue because of the problem in the more major cases.
Also, the above problems make it difficult to solve this problem.