In my spring boot application i am using Jackson to serialize objects by injecting the ObjectMapper
where needed.
I found this answer: https://stackoverflow.com/a/32842962/447426
But this one creates a new mapper - with jacksons default settings.
On the other hand i found this in official docu. I didn't really understand. There is no example code.
So how to configure springs ObjectMapper on base of Spring's default object mapper?
This configuration should be active on "ObjectMapper" whereever injected.