Generate JSON schema from Java class

前端 未结 3 632
孤城傲影
孤城傲影 2021-02-03 18:18

I have a POJO class:

public class Stock {
 int id;
 String name;
 Date date;
}

Are there any annotations or development framework/API that can co

3条回答
  •  离开以前
    2021-02-03 19:02

    Use JJschema. It can generate draft 4 compliant JSON schemas. Refer this post http://wilddiary.com/generate-json-schema-from-java-class/ for details.

    Though Jackson Json Schema module can too generate schema but it can, as of today, only generate draft 3 compliant schemas only.

提交回复
热议问题