Json – Jackson deserialisation NOT failing on unknown properties
Deserialisation should fail for the following POJO if the json has an additional field, as the Jackson documentation says FAIL_ON_UKNOWN_PROPERTIES is set by default. @Getter @Setter @FieldNameConstants @ToString @Builder @Document(collection = "form_layouts") @EqualsAndHashCode(callSuper = true, onlyExplicitlyIncluded = true) @Jacksonized public…