Closed jirenius closed 4 years ago
For HTTP requests, it should be possible to map certain HTTP methods to a corresponding call method.
The methods that should be allowed for mapping are:
The mapping should be available through flags:
--putmethod=put --deletemethod=delete --patchmethod=patch
or through configuration (value may be null):
{ "putMethod": "put", "deleteMethod": "delete", "patchMethod": "patch" }
Default is no mapping.
system.methodNotFound
405 Method Not Allowed
Resolved in #152
Issue
For HTTP requests, it should be possible to map certain HTTP methods to a corresponding call method.
The methods that should be allowed for mapping are:
Configuration
The mapping should be available through flags:
or through configuration (value may be null):
Default is no mapping.
Consideration
system.methodNotFound
error will be converted to a405 Method Not Allowed
HTTP response.