Avro-Schema-Generator
Avro-Schema-Generator copied to clipboard
Tool which generates Avro schemas and Java bindings from XML schemas.
Adds a refrence to the project license to README.md. This is considered a best-practice.
For #7, adds support for writing XML BigDecimal values as Avro strings.
I have an attribute of type xs:decimal in my XSD. Get the following error Unable to handle defined type 'java.math.BigDecimal'. ... and suspect it's due to Avro not supporting Decimal...
` ` In the case the XSD not having complex types, the java class is generated from JAXB, but the avro schema is not generated, If I add a complex...
Hi Ben, I've started incorporating the generated AVRO classes into my code. In the process, I noticed the generated Java attribute names aren't the same as the XMLtags. This makes...
Hi, Thanks for the quick reply to the previous question. That helped me to get schemagen to run on a large XSD we received from another organization. There was only...
Hi, I've been trying to use this project with a moderately complex XML Schema that has recursive elements (for example, A can-contain B and B can-contain A.) The current code...