Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e41e10d

Browse files
committedJan 14, 2025·
Fix #3406: change default of DeserializationFeature.FAIL_ON_TRAILING_TOKENS to true
1 parent 20ad657 commit e41e10d

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed
 

‎release-notes/VERSION

+2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ Versions: 3.x (for earlier see VERSION-2.x)
6262
#3046: Rename `JsonSerializable` as `JacksonSerializable`
6363
#3047: Rename `Bean[De]SerializerModifier` as `Value[De]SerializerModifier`
6464
#3070: Change default for `SerializationFeature.FAIL_ON_EMPTY_BEANS` to `false`
65+
#3406: Change default of `DeserializationFeature.FAIL_ON_TRAILING_TOKENS` to `true` for 3.0
66+
(suggested by @yawkat)
6567
#3522: Support serializing `ByteArrayOutputStream` as "simple" Binary value
6668
#3536: Create new exception type `JsonNodeException` for use by `JsonNode`-related problems
6769
#3542: Rename "com.fasterxml.jackson" -> "tools.jackson"

‎src/main/java/tools/jackson/databind/DeserializationFeature.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -247,10 +247,9 @@ public enum DeserializationFeature implements ConfigFeature
247247
* for binding the full value, and nothing more (except for possible ignorable
248248
* white space or comments, if supported by data format).
249249
*<p>
250-
* Feature is disabled by default (so that no check is made for possible trailing
251-
* token(s)) for backwards compatibility reasons.
250+
* Feature is enabled by default as of Jackson 3.0 (in 2.x it was disabled).
252251
*/
253-
FAIL_ON_TRAILING_TOKENS(false),
252+
FAIL_ON_TRAILING_TOKENS(true),
254253

255254
/**
256255
* Feature that determines whether Jackson code should catch

‎src/test/java/tools/jackson/databind/node/TreeReadViaMapperTest.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,11 @@ public void testNullViaParser() throws Exception
146146
@Test
147147
public void testMultiple() throws Exception
148148
{
149-
final ObjectMapper mapper = objectMapper();
149+
final ObjectMapper mapper = jsonMapperBuilder()
150+
.disable(DeserializationFeature.FAIL_ON_TRAILING_TOKENS)
151+
.build();
150152
String JSON = "12 \"string\" [ 1, 2, 3 ]";
151-
JsonParser p = mapper.createParser(new StringReader(JSON));
153+
JsonParser p = mapper.createParser(JSON);
152154
JsonNode result = mapper.readTree(p);
153155

154156
assertTrue(result.isIntegralNumber());

0 commit comments

Comments
 (0)
Please sign in to comment.