File tree 3 files changed +8
-5
lines changed
main/java/tools/jackson/databind
test/java/tools/jackson/databind/node
3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ Versions: 3.x (for earlier see VERSION-2.x)
62
62
#3046: Rename `JsonSerializable` as `JacksonSerializable`
63
63
#3047: Rename `Bean[De]SerializerModifier` as `Value[De]SerializerModifier`
64
64
#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)
65
67
#3522: Support serializing `ByteArrayOutputStream` as "simple" Binary value
66
68
#3536: Create new exception type `JsonNodeException` for use by `JsonNode`-related problems
67
69
#3542: Rename "com.fasterxml.jackson" -> "tools.jackson"
Original file line number Diff line number Diff line change @@ -247,10 +247,9 @@ public enum DeserializationFeature implements ConfigFeature
247
247
* for binding the full value, and nothing more (except for possible ignorable
248
248
* white space or comments, if supported by data format).
249
249
*<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).
252
251
*/
253
- FAIL_ON_TRAILING_TOKENS (false ),
252
+ FAIL_ON_TRAILING_TOKENS (true ),
254
253
255
254
/**
256
255
* Feature that determines whether Jackson code should catch
Original file line number Diff line number Diff line change @@ -146,9 +146,11 @@ public void testNullViaParser() throws Exception
146
146
@ Test
147
147
public void testMultiple () throws Exception
148
148
{
149
- final ObjectMapper mapper = objectMapper ();
149
+ final ObjectMapper mapper = jsonMapperBuilder ()
150
+ .disable (DeserializationFeature .FAIL_ON_TRAILING_TOKENS )
151
+ .build ();
150
152
String JSON = "12 \" string\" [ 1, 2, 3 ]" ;
151
- JsonParser p = mapper .createParser (new StringReader ( JSON ) );
153
+ JsonParser p = mapper .createParser (JSON );
152
154
JsonNode result = mapper .readTree (p );
153
155
154
156
assertTrue (result .isIntegralNumber ());
You can’t perform that action at this time.
0 commit comments