Suppose I have a schema in avro like this
{ "type" : "string" }
How should i create object from this schema in java?
Suppose I have a schema in avro like this
{ "type" : "string" }
How should i create object from this schema in java?
Copyright © 2021 Jogjafile Inc.
I did not found a way to do it directly with the java avro lib
but you can still do this
from How to avro binary encode my json string to a byte array?