我打算将我的POJO转换为JSON Schema

在现有的POJO中,我们具有codehaus包中的注释:
@JsonProperty("address")其中相应的导入为:

import org.codehaus.jackson.annotate.JsonProperty;


我无法使用codehaus api生成架构,因为我们具有递归的JSON结构并且得到StackOverflowError

因此,我尝试使用fasterxmljackson-module-jsonschema API来完成此工作。

我得到的样本输出:

"Registration" : {
      "type" : "object",
      "id" : "urn:jsonschema:com:xyz.abc.Address",
}


我有两个要求:


除了“类型”和“ id”之外,我还希望具有描述属性。我可以添加@JsonPropertyDescription属性,该属性将起作用,但随后每个属性将具有来自codehaus的一个注释和来自fasterxml包的另一个注释。 codehaus中是否有可用于此目的的等效注释?
有没有办法在“ id”属性中仅包含不合格的类名(仅“地址”,即没有合格的对象路径“ xyz.abc.Address”并且没有“ urn:jsonschema”)?


使用fasterxml生成模式的代码:

ObjectMapper mapper = new ObjectMapper();
JsonSchemaGenerator schemaGen = new JsonSchemaGenerator(mapper);
JsonSchema schema = schemaGen.generateSchema(DashboardDef.class);
String generatedJsonSchema = mapper.writerWithDefaultPrettyPrinter().writeValueAsString(schema);

最佳答案

如果可能,只需将codehaus注释替换为fasterxml之一。 codehaus不再受支持,应避免使用。有关更多信息,请查看:org.codehaus.jackson versus com.fasterxml.jackson.core

如果您真的想使用这两个库进入项目,则应查看AnnotationIntrospector类,该类允许进行额外的配置并将许多不同的库与Jackson框架链接。参见类似的问题:How to make fasterxml ObjectMapper work with codehaus annotations

要操纵JSON Schema,您可以实现自己的SchemaFactoryWrapper。也可以看看:


Removing “id” from JSON schema when creating it from POJO using jackson
Generating flat JSON schema with all $ref resolved from Java class #132


PS:我知道这不是理想的答案(它不包含直接解决方案),但我想向您指出一些您应该从中解决问题的主题,对此,评论太小了。

关于java - 使用Codehaus包类从POJO生成JSON模式时如何添加描述属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58564748/

10-10 19:23