RFC 10008 introduces the HTTP QUERY method for safe, idempotent requests with a request body.
Spring Framework currently supports:
GET
POST
PUT
PATCH
DELETE
HEAD
OPTIONS
TRACE
but does not expose QUERY.
It would be valuable to support:
- RequestMethod.QUERY
- @QueryMapping annotation
- Spring MVC request mapping
- Spring WebFlux request mapping
- CORS/OPTIONS handling
- HttpMethod.QUERY
RFC 10008 introduces the HTTP QUERY method for safe, idempotent requests with a request body.
Spring Framework currently supports:
GET
POST
PUT
PATCH
DELETE
HEAD
OPTIONS
TRACE
but does not expose QUERY.
It would be valuable to support: