What is the recommended way to write raw binary content? As far as I can see com.fasterxml.jackson.core.JsonGenerator#writeRaw() variants only support String/char[]/SerializableString arguments, which are not suitable for binary formats.
Is there any plan to extend it and accept binary arguments, i.e. byte[]/InputStream?
What is the recommended way to write raw binary content? As far as I can see
com.fasterxml.jackson.core.JsonGenerator#writeRaw()variants only supportString/char[]/SerializableStringarguments, which are not suitable for binary formats.Is there any plan to extend it and accept binary arguments, i.e.
byte[]/InputStream?