Published
- 1 min read
spring jackson mapper ignore unknown fields
The solution for this is noted below
spring jackson mapper ignore unknown fields
Solution
new ObjectMapper()
.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false)
Try other methods by searching on the site. That is if this doesn’t work