I have a Jackson with global settings `configure(F...
# jackson-kotlin
p
I have a Jackson with global settings
configure(FAIL_ON_UNKNOWN_PROPERTIES, false)
(actually Spring Boot does this but that's not important) 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?