目前,当使用 Spring Auto REST Docs 生成响应字段时,所有对象都被展平到响应中。例如考虑这两个类:
public class Foo {
private Bar bar;
/** Returns the bar. */
public Bar getBar() {
return bar;
}
}
public class Bar {
private String name;
/** Returns the bar's name. */
public String getName() {
return name;
}
}
为 生成的响应字段Foo
将包含两行Bar
:
Path | Type | Optional | Description
bar | Object | true | Returns the bar.
bar.name | String | true | Returns the bar's name.
该bar
行是否可能具有 type Bar
,它链接到 asciidoc 中列出该Bar
类型的响应字段的不同部分?
查看代码和文档,目前这似乎是不可能的。所以如果不是,有没有计划添加这样的东西?