Uses of Class
org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodArgumentResolver
Package
Description
MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation
package.-
Uses of AbstractMessageConverterMethodArgumentResolver in org.springframework.web.servlet.mvc.method.annotation
Modifier and TypeClassDescriptionclass
ExtendsAbstractMessageConverterMethodArgumentResolver
with the ability to handle method return values by writing to the response withHttpMessageConverters
.class
ResolvesHttpEntity
andRequestEntity
method argument values, as well as return values of typeHttpEntity
,ResponseEntity
,ErrorResponse
andProblemDetail
.class
Resolves the following method arguments: Annotated with @RequestPart
Of typeMultipartFile
in conjunction with Spring'sMultipartResolver
abstraction Of typejakarta.servlet.http.Part
in conjunction with Servlet multipart requestsclass
Resolves method arguments annotated with@RequestBody
and handles return values from methods annotated with@ResponseBody
by reading and writing to the body of the request or response with anHttpMessageConverter
.