@Post("/something")
@Operation(
Summary = "Doing something",
requestBody = @RequestBody(content = @Content(schema = @Schema(<DEFINITION>)))
)
HttpResponse doSomething(String userId, String tenantId, Person person) {
}
OpenAPI 3.0从@Parameter中删除了body和formParam。他们将其移至@RequestBody。
在@Schema定义中-诸如“ ref”,“ implementation”之类的属性可以定义Person对象。如何在定义中添加诸如userId和tenantId之类的表单参数?