Support serializing ByteArrayOutputStream
as "simple" Binary value
#3522
Labels
3.x
Issues to be only tackled for Jackson 3.x, not 2.x
(note: follow-up to #3493)
Before Jackson 2.12, apparently it was possible to serialize
ByteArrayOutputStream
values as a POJO -- if (and only if) auto-detection of all visibility levels (includingprivate
) was enabled. If so, a POJO withbuf
andlength
fields were produced.With 2.13 the default visibility settings for JDK types were changed to only detect
public
accessors; this also prevents custom default visibility from being applied. As a result,ByteArrayOutputStream
values are no longer serializable.But it might make sense to make it serializable again. However, the representation as POJO does not make sense: if serialization is to be used, it should:
ByteArrayOutStream.toByteArray()
to access contentI realize that this behavior is different from the earlier one so it is an open question if this should be deferred until Jackson 3.0.
The text was updated successfully, but these errors were encountered: