We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Jackson defaults to fail on unknown properties. This is not the preferred behavior.
The task is to ensure that it is possible to add new properties without causing trouble for older clients which do not support the need fields.
Two alternative implementations:
Configure jackson mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
Replace jackson with JsonPath.
The text was updated successfully, but these errors were encountered:
fc5d438
No branches or pull requests
Jackson defaults to fail on unknown properties. This is not the preferred behavior.
The task is to ensure that it is possible to add new properties without causing trouble for older clients which do not support the need fields.
Two alternative implementations:
Configure jackson
mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
Replace jackson with JsonPath.
The text was updated successfully, but these errors were encountered: