-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Case-insensitive boolean deserialization #2132
Case-insensitive boolean deserialization #2132
Conversation
First of all, thank you for PR! Now, as per my notes I think what is needed is support for using either "leniency" (via |
@cowtowncoder I believe I saw a special Jackson setting that switches from strict/not strict. Let me do a little research on Monday... |
@cowtowncoder I thought about |
So: since 2.10 adds more specific |
I tried using the new Features in my code but it does not help me against uppercased value like "TRUE" Maybe because BooleanDeserializer does not consider the Feature value but I could be wrong jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/NumberDeserializers.java Lines 230 to 249 in 0cb7362
|
It's a fix for #1852