Is there a tool to generate a JSON schema from an XML schema through Java?

前端 未结 5 992
滥情空心
滥情空心 2020-12-14 08:20

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?

5条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-14 09:06

    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.

提交回复
热议问题