Spring Boot currently provides autoconfiguration of Jackson mappers for JSON, CBOR, and XML.
I'm looking to configure add CSV mapping to my application, and it should share the same configuration as the existing three mappers.
The class that does most of the work is AbstractMapperBuilderCustomizer, but that is unfortunately package-private. In lieu of full support from Spring Boot, making that public protected would significantly ease the addition of other Jackson formats.
Spring Boot currently provides autoconfiguration of Jackson mappers for JSON, CBOR, and XML.
I'm looking to configure add CSV mapping to my application, and it should share the same configuration as the existing three mappers.
The class that does most of the work is
AbstractMapperBuilderCustomizer, but that is unfortunately package-private. In lieu of full support from Spring Boot, making thatpublicprotected would significantly ease the addition of other Jackson formats.