In a Spring application I want to use my own JsonSerializer with a RestController. My JsonSerializer is registered in a Jackson2ObjectMapperBuilder. So far so good, but when I annotate the respective fields with @JsonSerialize Spring MVC complains that there is no converter found for my class. Here is the code:In a Spring application I want to use my own Js