1
我想「手動」聲明一種類型的字段,作爲swagger中的條目列表。如何聲明作爲Swagger中的條目列表的類型
比方說,我有完全的自定義
public class MyCustomList implements List<MyValue> {
....
}
現在我有一個模型類
@Data
public class MyModel {
public MyCustomList problematicField;
}
我想打揚鞭明白MyCustomList
是MyValue
列表(陣列)。
在@ApiOperation
我設置
@ApiOperation(value = "..", response = MyValue.class, responseContainer = "List")
啊,但是這種類型不具有屬性。這是一個東西的列表。 – 2014-11-06 10:25:22