Can Swagger @ApiOperation allow to specify a list of list in Java?(Swagger @ApiOperation 可以允许在 Java 中指定列表列表吗?)
问题描述
我在 Java 类中有一个方法,其签名如下所示,我想为其添加 Swagger Rest 文档.
I have a method in a Java class with signature like below and I want to add Swagger Rest documentation for it.
public List<List<MyCustomClass>> getMyCustomClasses(String id){
//
}
我想知道是否有办法让 response 或 responseContainer 返回 List 对象列表?像下面这样的?
I want to know if there is a way to have either response or responseContainer to return List of List objects? Something like below?
@ApiOperation(value = "find MyCustomClass objects by id", response =MyCustomClass.class , responseContainer = "List<List>")
如果方法的响应只是 List,我在生成 swagger 文档时没有问题我可以指定 response =MyCustomClass.class , responseContainer = "List" 但只有当它是 List of List 作为返回类型时才会出现问题.
I have no issues in generating swagger docs if the response of the method is just List where I could specify response =MyCustomClass.class , responseContainer = "List" but having problem only if it is List of List as return type.
谢谢
拉维
推荐答案
为此,您可以简单地创建一个模板类,如下所示:
In order to do this you can simply create a template class like this:
public class TempClass {
private List<someClass> listOfClass;
public List<someClass> getListOfClass() {
return listOfClass;
}
public void setListOfClass(List<someClass> listOfClass) {
this.listOfClass = listOfClass;
}
}
或者更复杂的是:
public class TempClass {
private List<List<List<someClass>>> listOfList;
public List<List<List<someClass>>> getListOfList(){
return listOfList;
}
public void setListOfList(List<List<List<someClass>>> listOfList) {
this.listOfList = listOfList;
}
}
最后得到这个类作为对方法上方注释的响应,如下所示:
And at the end get this class as a response to the annotation above the method like this:
@ApiOperation(response = TempClass.class)
您还应该将方法的返回类型指定为 TempClass
you should also specify the return type of the method as the TempClass
另一个问题讨论了相同的问题这里一个>
There is another issue that discussed a same issue here
这篇关于Swagger @ApiOperation 可以允许在 Java 中指定列表列表吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Swagger @ApiOperation 可以允许在 Java 中指定列表列表吗?
基础教程推荐
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01