Vladimir Matveev
Vladimir Matveev
> I don't think there are any users of the experimental api so should have been safe Sorry but how did you figure this out? Experimental API was explicitly documented...
It is actually possible to do this, if you explicitly extend the necessary traits: ```scala object CustomJacksonParser extends WithJacksonMapper with JacksonParser { mapper.configure(SomeFeatures.SOME_FEATURE, true) } ``` Then you just use...
Apparently my above code only works for deserializer features, because circe creates a separate JsonFactory specifically to do parsing and does not use the mapper's own factory to do the...
@bioball - I've started the package mapping implementation, just wanted to show the overall direction before I start implementing it for Kotlin. What do you think?