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
(note: off-shoot of a comment on #1001)
As reported by @denizk there is a problem in applying overrides for one of constraints:
JsonFactory.setStreamReadConstraints(StreamReadConstraints.builder().maxNameLength(100_000).build());
does not update symbol table set by:
JsonFactory._rootCharSymbols = CharsToNameCanonicalizer.createRoot(this);
and only Builder-based alternative works. It should be possible to apply constraints with setStreamReadConstraints() too.
setStreamReadConstraints()
The text was updated successfully, but these errors were encountered:
Fixes #1207: apply "maxNameLength" change to CharsToNameCaonicalizer
224ae67
500e960
Update Jackson to 2.17.0
e3aca9c
Add a test to ensure that setting limits for JSON is respected when setReadContraints method is used. FasterXML/jackson-core#1207
d2438d9
No branches or pull requests
(note: off-shoot of a comment on #1001)
As reported by @denizk there is a problem in applying overrides for one of constraints:
does not update symbol table set by:
and only Builder-based alternative works.
It should be possible to apply constraints with
setStreamReadConstraints()
too.The text was updated successfully, but these errors were encountered: