We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9f4d16 commit fff43d5Copy full SHA for fff43d5
springdoc-openapi-webmvc-core/src/test/java/test/org/springdoc/api/app103/HelloController.java
@@ -34,7 +34,11 @@ public class HelloController {
34
35
@PostMapping(value = "/test/103", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
36
@Operation(
37
- requestBody = @RequestBody(content = @Content(encoding = @Encoding(name = "body", contentType = "application/json")))
+ requestBody = @RequestBody(
38
+ content = @Content(
39
+ encoding = @Encoding(name = "body", contentType = "application/json")
40
+ )
41
42
)
43
public String postMyRequestBody(
44
@RequestPart("body") ExampleBody body,
0 commit comments