-
-
Notifications
You must be signed in to change notification settings - Fork 5
Request body
Ahmad K. Bawaneh edited this page Feb 16, 2020
·
3 revisions
In case of POST
, PUT
, PATCH
http requests we normally sends a body in the request, in domino-rest the body of the request is determined from the call argument using one of the following in order :
- The argument in the method is annotated with
@RequestBody
. - The class representing the type of the argument is annotated with
@RequestBody
. - The last argument in the method that is not annotated with
@QueryParam
or@HeaderParam
or@PathParam
- Home
- Quick start
- Sharing clients
-
Configuration
- Locating resource classes
- Service root
- Resource root
- Http methods
- Service method path mapping
- Service path
- Query parameters
- Path parameters
- Header parameters
- Date format
- Request body
- Request and Response mapping
- Produces and Consumes
- Success codes
- Timeout and maximum retries
- With credentials
- Custom request URL
- Global interceptors
- Default failed response handler
- Interface inheritance
- Multipart form data