I have a REST WS to update a bean object which receives a JSON string as input.
ABean entity = svc.findEntity(...); objectMapper.readerForUpdating(entity).r
You can use @JsonIgnoreType to ignore a java class/interface/enum from serializing. Additionally you can use @JsonIgnoreProperties for ignoring a list of properties and @JsonIgnore for a specific property