Since upgrading my Application to SpringBoot 3 / Jackson 2.15.4, all the properties that are null are not serialized anymore. I’m suspecting it has to do with @JsonView since another application without it is working fine and serialize null as {myproperty: null}.
Configuring my ObjectMapper so doesn’t help,
builder.serializationInclusion(JsonInclude.Include.ALWAYS).build();