繁体   English   中英

使用 Jackson 的 ObjectMapper 的 JSON 对象顺序

[英]Order of JSON objects using Jackson's ObjectMapper

我正在使用ObjectMapper来做我的 java-json 映射。

ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter();
ow.writeValue(new File( fileName +".json"), jsonObj);

这是我的java类:

public class Relation {

private String id;
private String source;
private String target;
private String label;
private List<RelAttribute> attributes;

public String getId() {
    return id;
}

public void setId(String id) {
    this.id = id;
}

public String getSource() {
    return source;
}

public void setSource(String source) {
    this.source = source;
}

public String getTarget() {
    return target;
}

public void setTarget(String target) {
    this.target = target;
}

public String getLabel() {
    return label;
}
public void setLabel(String label) {
    this.label = label;
}

public void setAttributes(List<RelAttribute> attributes) {
    this.attributes = attributes;
}

public List<RelAttribute> getAttributes() {
    return attributes;
}

}

这就是我得到的:

{
    "id" : "-75da69d3-79c8-4000-a3d8-b10350a57a7e",
    "attributes" : [ {
      "attrName" : "ID",
      "attrValue" : ""
    }, {
      "attrName" : "Description",
      "attrValue" : "Primary Actor"
    }, {
      "attrName" : "Status",
      "attrValue" : ""
    } ],
    "label" : "new Label",
    "target" : "-46b238ac-b8b3-4230-b32c-be9707f8b691",
    "source" : "-daa34638-061a-45e0-9f2e-35afd6c271e0"
  }

所以我现在的问题是,我怎样才能得到这个 json 输出:

{
    "id" : "-75da69d3-79c8-4000-a3d8-b10350a57a7e",
    "label" : "new Label",
    "target" : "-46b238ac-b8b3-4230-b32c-be9707f8b691",
    "source" : "-daa34638-061a-45e0-9f2e-35afd6c271e0",
    "attributes" : [ {
      "attrName" : "ID",
      "attrValue" : ""
    }, {
      "attrName" : "Description",
      "attrValue" : "Primary Actor"
    }, {
      "attrName" : "Status",
      "attrValue" : ""
    } ]

  }

我希望它的顺序与我的 java 声明中的顺序相同。 有没有办法指定它? 也许带有注释或类似的东西?

@JsonPropertyOrder({ "id", "label", "target", "source", "attributes" })
public class Relation { ... }

您知道有一种方便的方法可以指定字母顺序吗?

@JsonPropertyOrder(alphabetic = true)
public class Relation { ... }

如果您有特定要求,请在此处配置自定义排序:

@JsonPropertyOrder({ "id", "label", "target", "source", "attributes" })
public class Relation { ... }

生成的 .class 中字段的顺序是不确定的,因此您不能指望这一点。

如果您想要每个班级的特定排序,那么您需要使用其他答案中指定的方法之一。

如果您希望所有内容都默认为按字母顺序排列(例如,为了 JSON 结构的一致性),那么您可以像这样配置 ObjectMapper:

ObjectMapper mapper = new ObjectMapper();
mapper.setConfig(mapper.getSerializationConfig()
   .with(MapperFeature.SORT_PROPERTIES_ALPHABETICALLY));

要获得更一致的 JSON,还可以考虑添加:

   .with(SerializationFeature.ORDER_MAP_ENTRIES_BY_KEYS)

这种方法的一个优点是您不必修改每个被序列化的类。

我今天发现了第三种方法,以防字母不是您想要的排序顺序。 事实证明,在字段上添加 @JsonProperty 注释会将其放在最后写入时。 我发现当我想指定一个不符合 java 命名约定的属性名称时。

通过添加索引属性,您可以定义顺序。 最低的索引放在最前面。

@JsonProperty(index=20)
String prop1;

@JsonProperty(index=10)
String prop2;

将呈现:

{"prop2": "valueProp2", "prop1": "valueProp1"}

你可以使用@XmlAccessorType(XmlAccessType.FIELD)

@XmlType(name = "response", propOrder = { "prop1", "prop2",
        "prop3", "prop4", "prop5", "prop6" }).

@JsonPropertyOrder需要添加一个新的jar。

根据本文档,您可以全局配置 Jackson2ObjectMapperBuilder。 此类在 spring-web 依赖项中可用。

@Bean
public Jackson2ObjectMapperBuilder objectMapperBuilder() {
      Jackson2ObjectMapperBuilder builder = new Jackson2ObjectMapperBuilder();
      builder.featuresToEnable(MapperFeature.SORT_PROPERTIES_ALPHABETICALLY);
      return builder;
}

此外,您还可以使用 @JsonProperty(index) 来确定继承类中的顺序。

class animal {
    @JsonProperty(index=2)
    int p1;
    @JsonProperty(index=3)
    int p2;
}

class cat extends animal{
    @JsonProperty(index=1)
    int p3;
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM