jackson-dataformats-binary icon indicating copy to clipboard operation
jackson-dataformats-binary copied to clipboard

Uber-project for standard Jackson binary format backends: avro, cbor, ion, protobuf, smile

Results 96 jackson-dataformats-binary issues
Sort by recently updated
recently updated
newest added

Looking for some inter-operability between the org.apache.avro.message.BinaryMessageEncoder (that is used by the Java beans generated by the avro maven/gradle plug-ins) and the raw bytes generated by the Jackson 'AvroMapper' as...

avro

(note: continuation from #93) Although coercing "undefined" into `null` token works to some degree, it seems better to allow exposing it in a way that allows caller to distinguish between...

cbor

As a followup of https://github.com/FasterXML/jackson-core/issues/57 and SMILE async parsing, it would be great for `jackson-dataformat-cbor` to provide such support as well. We would like to leverage such support in Spring...

cbor

This is a Protoparser problem that it failed to parse `reserved` field. Reserved field is explained in the official document. https://developers.google.com/protocol-buffers/docs/proto#reserved ``` va.lang.IllegalStateException: Syntax error in Unnamed-protobuf-schema at 389:11: unexpected...

protobuf

As per what they said in [README](https://github.com/square/protoparser). Is there a plan for migrating to [wire](https://github.com/square/wire/)?

protobuf

Unsure if I'm doing something wrong here. I want to deserialize Avro to a Json string. I've boiled my issue down to the following: ``` public static void main(String[] args)...

avro

I would like to create ProtobufSchema objects from the descriptor files instead of proto files. `protoc -o output.desc` can generate the descriptor file `output.desc` by compiling multiple proto files. It's...

protobuf

Can I generate a pb schema with a fixed32(wire type 5) field? I have read ProtoBufSchemaVisitor.java and did't find a way to do that. Thanks!

protobuf

Creating an issue based on the [Google Groups discussion](https://groups.google.com/forum/#!topic/jackson-user/MO_w7n1oyFs). Issue: Ion type annotations are not written when using [IonAnnotationTypeSerializer](https://github.com/FasterXML/jackson-dataformats-binary/blob/master/ion/src/main/java/com/fasterxml/jackson/dataformat/ion/polymorphism/IonAnnotationTypeSerializer.java). This is due to un-implemented `writeTypePrefixForScalar` and `writeTypePrefixForArray` methods in the...

ion

ObjectWriter fails to serialize depends on the order of messages defined in a proto file. proto1 below works fine. ``` // proto1 message Main { required Other o = 1;...

protobuf