Skip to content

Commit ba083e5

Browse files
authoredMar 6, 2025
Add JsonFactoryBuilder.configureForJackson2(), JsonFactoryBuilder builderWithJackson2Defaults() (#1411)
1 parent 4ffe83f commit ba083e5

File tree

5 files changed

+47
-0
lines changed

5 files changed

+47
-0
lines changed
 

‎release-notes/VERSION

+3
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ JSON library.
5353
#1385: Create `jackson-core-[VERSION]-tests.jar` to contain shared
5454
test utility classes
5555
#1401: Rename `TreeNode.isContainerNode()` as `isContainer()` (3.0)
56+
#1411: Add `JsonFactoryBuilder.configureForJackson2()`,
57+
`JsonFactoryBuilder builderWithJackson2Defaults()`
58+
(fixed by @pjfanning)
5659
- Rename `JsonGenerator.Feature.AUTO_CLOSE_JSON_CONTENT` as `AUTO_CLOSE_CONTENT`
5760
- Add `TreeCodec.nullNode()`, `TreeNode.isNull()` methods
5861
- Change the way `JsonLocation.NA` is included in exception messages

‎src/main/java/tools/jackson/core/TSFBuilder.java

+13
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,19 @@ public B configure(StreamWriteFeature f, boolean state) {
192192
return state ? enable(f) : disable(f);
193193
}
194194

195+
/**
196+
* The builder returned uses default settings more closely
197+
* matching the default configs used in Jackson 2.x versions.
198+
* <p>
199+
* This method is still a work in progress and may not yet fully replicate the
200+
* default settings of Jackson 2.x.
201+
* </p>
202+
*/
203+
public B configureForJackson2() {
204+
return disable(StreamReadFeature.USE_FAST_DOUBLE_PARSER)
205+
.disable(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER);
206+
}
207+
195208
// // // Other configuration, constraints
196209

197210
/**

‎src/main/java/tools/jackson/core/json/JsonFactory.java

+15
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,21 @@ public static JsonFactoryBuilder builder() {
191191
return new JsonFactoryBuilder();
192192
}
193193

194+
/**
195+
* Factory method to use for constructing {@link JsonFactory} instances with
196+
* different configuration. The builder returned uses default settings more closely
197+
* matching the default configs used in Jackson 2.x versions.
198+
* <p>
199+
* This method is still a work in progress and may not yet fully replicate the
200+
* default settings of Jackson 2.x.
201+
* </p>
202+
*
203+
* @return Builder instance to use
204+
*/
205+
public static JsonFactoryBuilder builderWithJackson2Defaults() {
206+
return builder().configureForJackson2();
207+
}
208+
194209
/**
195210
* Method for constructing a new {@link JsonFactory} that has
196211
* the same settings as this instance, but is otherwise

‎src/main/java/tools/jackson/core/json/JsonFactoryBuilder.java

+7
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,13 @@ public JsonFactoryBuilder configure(JsonWriteFeature f, boolean state) {
116116
return state ? enable(f) : disable(f);
117117
}
118118

119+
@Override
120+
public JsonFactoryBuilder configureForJackson2() {
121+
return super.configureForJackson2()
122+
.disable(JsonWriteFeature.ESCAPE_FORWARD_SLASHES)
123+
.disable(JsonWriteFeature.COMBINE_UNICODE_SURROGATES_IN_UTF8);
124+
}
125+
119126
// // // Other JSON-specific configuration
120127

121128
/**

‎src/test/java/tools/jackson/core/unittest/json/JsonFactoryTest.java

+9
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,15 @@ public void testCanonicalizationDisabled() throws Exception {
345345
doCanonicalizationTest(false);
346346
}
347347

348+
@Test
349+
public void testBuilderWithJackson2Defaults() {
350+
JsonFactory factory = JsonFactory.builderWithJackson2Defaults().build();
351+
assertFalse(factory.isEnabled(StreamReadFeature.USE_FAST_DOUBLE_PARSER));
352+
assertFalse(factory.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER));
353+
assertFalse(factory.isEnabled(JsonWriteFeature.ESCAPE_FORWARD_SLASHES));
354+
assertFalse(factory.isEnabled(JsonWriteFeature.COMBINE_UNICODE_SURROGATES_IN_UTF8));
355+
}
356+
348357
// Configure the JsonFactory as expected, and verify across common shapes of input
349358
// to cover common JsonParser implementations.
350359
private void doCanonicalizationTest(boolean canonicalize) throws Exception {

0 commit comments

Comments
 (0)