KMongo seems to work great if I use the Jackson annotations to modify how I would like my object serialized before being saved as a mongo document, but if I use jackson application configuration, such as "jackson.property-naming-strategy: SNAKE_CASE", instead of adding a Jackson annotation to each member variable on all my objects, KMongo seems to disregard that and not use that. If I construct an ObjectMapper it honors that. So, it seems that KMongo uses a different ObjectMapper bean, and I'd like to be able to get access that in order to update the property naming strategy at runtime.