Lets say i have
inline class CustomId(val id: String)
And i use Jackson to deserialize it back to a object, Jackson throws an Exception:
InvalidDefinitionException
Cannot construct instance of CustomId (no Creators, like default construct, exist)
How to solve this Problem?
How can I create a custom deserializer?