我在具有如下签名的 Java 类中有一个方法,我想为其添加 Swagger Rest 文档。
public List<List<MyCustomClass>> getMyCustomClasses(String id){
//
}
我想知道是否有办法让 response 或 responseContainer 返回 List 对象列表?像下面这样的东西?
@ApiOperation(value = "find MyCustomClass objects by id", response =MyCustomClass.class , responseContainer = "List<List>")
如果方法的响应只是 List 我可以在其中指定 response =MyCustomClass.class , responseContainer = "List" 但只有当它是 List of List 作为返回类型时才会出现问题,我在生成 swagger 文档方面没有问题。
谢谢
拉维