You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JodaDateSerializerBase#isEmpty(T value) calls JsonSerializer#isEmpty(null, value) which calls #isEmpty(value) again, resulting in a StackOverflowError.
jackson-databind calls isEmpty when serializing various values if the object mapper is configured with mapper.setSerializationInclusion(JsonInclude.Include.NON_EMPTY);.
For example, the serialization of a bean with a non-null field value results in a JsonMappingException wrapping the StackOverflowError.
The text was updated successfully, but these errors were encountered:
clamothe
added a commit
to clamothe/jackson-datatype-joda
that referenced
this issue
Jan 12, 2015
JodaDateSerializerBase#isEmpty(T value)
callsJsonSerializer#isEmpty(null, value)
which calls#isEmpty(value)
again, resulting in a StackOverflowError.jackson-databind calls isEmpty when serializing various values if the object mapper is configured with
mapper.setSerializationInclusion(JsonInclude.Include.NON_EMPTY);
.For example, the serialization of a bean with a non-null field value results in a JsonMappingException wrapping the StackOverflowError.
The text was updated successfully, but these errors were encountered: