-
Notifications
You must be signed in to change notification settings - Fork 11
Closed
Description
The following openapi query parameter
/foo:
get:
parameters:
- name: props
in: query
explode: true
schema:
type: object
properties:
prop1:
type: string
prop2:
type: string
The explode: true tells us that the object is serialized as multiple query parameters. The generatr should produce an endpoint like this:
@GetMapping(path = "/endpoint-object")
ResponseEntity<Void> getEndpointObject(GetFooProps props);
- no
@RequestParamannotation
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request