hi guys I have a Jackson with global settings `con...
# spring
p
hi guys I have a Jackson with global settings
configure(FAIL_ON_UNKNOWN_PROPERTIES, false)
because that what Spring Boot does. Now I need the deserializer to fail on unknown property in one specific class. I tried adding
@JsonIgnoreProperties(ignoreUnknown = false)
but it has no effect. Is that a bug? Does the global setting fully override these annotations?