<@UB7DDNASC> If you're using Jackson, then you'll ...
# http4k
d
@maybetrinity If you're using Jackson, then you'll need to add custom serialisers for the localdate types to the configuration of the Jackson object instance that you're using. We don't really add any new serialisation options to to what comes out of the box. So you can do this kind of thing
Copy code
object CustomJson : ConfigurableJackson(ObjectMapper()
    .registerModule(KotlinModule()
    .disableDefaultTyping()
    .setSerializationInclusion(NON_NULL)
    .configure(FAIL_ON_UNKNOWN_PROPERTIES, false)
    .configure(USE_BIG_INTEGER_FOR_INTS, true)
)
🙏 1