We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 901081b commit 9d9972aCopy full SHA for 9d9972a
README.md
@@ -131,6 +131,17 @@ Implemented limits are:
131
* Maximum Property name length (2.16+): (see https://github.com/FasterXML/jackson-core/issues/1047)
132
* Default: 50,000
133
134
+### Re-configuring limits
135
+
136
+You can change per-factory limits as follows:
137
138
+```
139
+JsonFactory f = JsonFactory.builder()
140
+ .streamReadConstraints(StreamReadConstraints.builder().maxNumberLength(250).build())
141
+ .streamWriteConstraints(StreamWriteConstraints.builder().maxNestingDepth(2000).build())
142
+ .build();
143
144
145
-----
146
147
## Compatibility
0 commit comments