Skip to content
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

Add JsonFactoryBuilder.configureForJackson2(), JsonFactoryBuilder builderWithJackson2Defaults() #1411

Merged
merged 8 commits into from
Mar 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions release-notes/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ JSON library.
#1385: Create `jackson-core-[VERSION]-tests.jar` to contain shared
test utility classes
#1401: Rename `TreeNode.isContainerNode()` as `isContainer()` (3.0)
#1411: Add `JsonFactoryBuilder.configureForJackson2()`,
`JsonFactoryBuilder builderWithJackson2Defaults()`
(fixed by @pjfanning)
- Rename `JsonGenerator.Feature.AUTO_CLOSE_JSON_CONTENT` as `AUTO_CLOSE_CONTENT`
- Add `TreeCodec.nullNode()`, `TreeNode.isNull()` methods
- Change the way `JsonLocation.NA` is included in exception messages
Expand Down
13 changes: 13 additions & 0 deletions src/main/java/tools/jackson/core/TSFBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,19 @@ public B configure(StreamWriteFeature f, boolean state) {
return state ? enable(f) : disable(f);
}

/**
* The builder returned uses default settings more closely
* matching the default configs used in Jackson 2.x versions.
* <p>
* This method is still a work in progress and may not yet fully replicate the
* default settings of Jackson 2.x.
* </p>
*/
public B configureForJackson2() {
return disable(StreamReadFeature.USE_FAST_DOUBLE_PARSER)
.disable(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER);
}

// // // Other configuration, constraints

/**
Expand Down
15 changes: 15 additions & 0 deletions src/main/java/tools/jackson/core/json/JsonFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,21 @@ public static JsonFactoryBuilder builder() {
return new JsonFactoryBuilder();
}

/**
* Factory method to use for constructing {@link JsonFactory} instances with
* different configuration. The builder returned uses default settings more closely
* matching the default configs used in Jackson 2.x versions.
* <p>
* This method is still a work in progress and may not yet fully replicate the
* default settings of Jackson 2.x.
* </p>
*
* @return Builder instance to use
*/
public static JsonFactoryBuilder builderWithJackson2Defaults() {
return builder().configureForJackson2();
}

/**
* Method for constructing a new {@link JsonFactory} that has
* the same settings as this instance, but is otherwise
Expand Down
7 changes: 7 additions & 0 deletions src/main/java/tools/jackson/core/json/JsonFactoryBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,13 @@ public JsonFactoryBuilder configure(JsonWriteFeature f, boolean state) {
return state ? enable(f) : disable(f);
}

@Override
public JsonFactoryBuilder configureForJackson2() {
return super.configureForJackson2()
.disable(JsonWriteFeature.ESCAPE_FORWARD_SLASHES)
.disable(JsonWriteFeature.COMBINE_UNICODE_SURROGATES_IN_UTF8);
}

// // // Other JSON-specific configuration

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,15 @@ public void testCanonicalizationDisabled() throws Exception {
doCanonicalizationTest(false);
}

@Test
public void testBuilderWithJackson2Defaults() {
JsonFactory factory = JsonFactory.builderWithJackson2Defaults().build();
assertFalse(factory.isEnabled(StreamReadFeature.USE_FAST_DOUBLE_PARSER));
assertFalse(factory.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER));
assertFalse(factory.isEnabled(JsonWriteFeature.ESCAPE_FORWARD_SLASHES));
assertFalse(factory.isEnabled(JsonWriteFeature.COMBINE_UNICODE_SURROGATES_IN_UTF8));
}

// Configure the JsonFactory as expected, and verify across common shapes of input
// to cover common JsonParser implementations.
private void doCanonicalizationTest(boolean canonicalize) throws Exception {
Expand Down