Annotation Interface RequestBody


@Documented @Retention(RUNTIME) @Target(PARAMETER) @Inherited public @interface RequestBody
This decorator is used inside a method interpreted by the MethodController Object. It is used to get the http request body. If the parameter is a primitive type, it will be converted to the primitive type. Else the parameter body is read has a json object, and it is parsed by Jackson.