0

Enunciate docs 模块中的示例 JSON 将地图显示为对象数组。

例如,我有一个像这样的对象:

@JsonRootType
@JsonName("MyObj")
@XmlRootElement
public class MyObject {
  @DocumentationExample("John Doe")
  private String name;
  private Map<String, String> attributes;

  public MyObject() {}

  public String getName() { return name; }
  public Map<String, String> getAttributes() { return attributes; }
}

来自 enunciate 的示例 JSON 如下所示:

{
  "name" : "John Doe",
  "attributes" : [{
    "..." : ...
  },{
  }]
}

我希望示例 JSON 看起来像:

{
  "name" : "John Doe",
  "attributes" : {
    "..." : ...,
  }
}

看起来 GenerateExampleJsonMethod 在看到 Map 时总是在创建 ArrayNode。有没有办法获得预期的 JSON?

我正在使用发音版本 1.26.2

4

1 回答 1

0

是的。这在 1.27 中得到了修复,本周等待发布。

于 2013-07-06T20:30:50.493 回答