RestController返回响应
Page<Foo>
我这样注解
@ApiResponses(value = {
@ApiResponse(
responseCode = "200",
content = @Content(
mediaType = MediaType.APPLICATION_JSON_VALUE,
array = @ArraySchema(
schema = @Schema(implementation = Foo.class)
)),
description = "The request has succeeded")
但是我需要生成页面而不是数组。
有没有办法做到这一点
如果应该是这样
schema PageFoo->data-> [{Foo}]
如果我删除注解,它将生成正确架构,但没有内容类型
1条答案
按热度按时间icnyk63a1#