我在springboot中有休息服务并使用springdoc-openapi,我所有的端点都使用同一个类响应,如下所示:
public class ListResponse {
private List<?> list;
private Integer statusHttp;}
在“列表”字段中,我添加了一个不同的bean列表,问题是当我使用springdocs生成yaml定义时,它只为所有端点生成以下模式:
ListResponse:
type: object
properties:
lista:
type: array
items:
type: object
statusHttp:
type: integer
format: int32
任何人都知道如何使用我的 ListResponse 类为端点生成自定义模式,或者我应该为每个具有不同字段“list”的端点生成一个类吗?