Skip to content

Commit 5e4503d

Browse files
committed
Add note about @ParameterObject in the migrating-from-springfox section
1 parent fdc61be commit 5e4503d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/docs/asciidoc/migrating-from-springfox.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ Package for swagger 3 annotations is `io.swagger.v3.oas.annotations`.
2626
- `@ApiParam` -> `@Parameter`
2727
- `@ApiResponse(code = 404, message = "foo")` -> `@ApiResponse(responseCode = "404", description = "foo")`
2828

29+
* If you're using an object to capture multiple request query params, annotation that method argument with `@ParameterObject`
30+
2931
* This step is optional: Only if you have **multiple** `Docket` beans replace them with `GroupedOpenApi` beans.
3032

3133
Before:

0 commit comments

Comments
 (0)