是否有通过 Java 从 XML 模式生成 JSON 模式的工具?

2022-01-09 00:00:00 xml json jsonschema xsd java

是否有人知道我们可以通过 Java 从 XML 模式生成 JSON 模式或从 JSON 模式生成 XML 模式的工具或方法?

Is anyone aware of a tool or approach from which we can generate a JSON schema from XML schema or XML schema from JSON schema by Java?

推荐答案

不是很优雅,但是 jackson 可以从 a href="http://wiki.fasterxml.com/JacksonJsonSchemaGeneration">json schemajava类.因此,您可以采用您的 xml 模式 使用 jaxb 注释从中生成 java 类,然后从中生成 json 模式,如 jackson 支持jaxb 注释.

It isn't very elegant, but jackson can generate json schema from a java class . So you could take your xml schema, generate java classes from it with jaxb annotations, then generate the json schema from that as jackson supports jaxb annotations.

相关文章