Package | Description |
---|---|
org.springframework.http.converter |
Provides an HttpMessageConverter abstraction to convert between Java objects and HTTP input/output messages.
|
org.springframework.http.converter.feed |
Provides HttpMessageConverter implementations for handling Atom and RSS feeds.
|
org.springframework.http.converter.json |
Provides HttpMessageConverter implementations for handling JSON.
|
org.springframework.http.converter.protobuf |
Provides an HttpMessageConverter implementation for handling
Google Protocol Buffers.
|
org.springframework.http.converter.xml |
Provides HttpMessageConverter implementations for handling XML.
|
org.springframework.web.servlet.mvc.method.annotation |
MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation package. |
org.springframework.web.servlet.mvc.support |
Support package for MVC controllers.
|
Modifier and Type | Method and Description |
---|---|
BufferedImage |
BufferedImageHttpMessageConverter.read(Class<? extends BufferedImage> clazz,
HttpInputMessage inputMessage) |
MultiValueMap<String,String> |
FormHttpMessageConverter.read(Class<? extends MultiValueMap<String,?>> clazz,
HttpInputMessage inputMessage) |
T |
AbstractHttpMessageConverter.read(Class<? extends T> clazz,
HttpInputMessage inputMessage)
This implementation simple delegates to
AbstractHttpMessageConverter.readInternal(Class, HttpInputMessage) . |
T |
HttpMessageConverter.read(Class<? extends T> clazz,
HttpInputMessage inputMessage)
Read an object of the given type from the given input message, and returns it.
|
Object |
ResourceRegionHttpMessageConverter.read(Type type,
Class<?> contextClass,
HttpInputMessage inputMessage) |
T |
GenericHttpMessageConverter.read(Type type,
Class<?> contextClass,
HttpInputMessage inputMessage)
Read an object of the given type form the given input message, and returns it.
|
protected ResourceRegion |
ResourceRegionHttpMessageConverter.readInternal(Class<?> clazz,
HttpInputMessage inputMessage) |
protected Object |
ObjectToStringHttpMessageConverter.readInternal(Class<?> clazz,
HttpInputMessage inputMessage) |
protected Resource |
ResourceHttpMessageConverter.readInternal(Class<? extends Resource> clazz,
HttpInputMessage inputMessage) |
protected abstract T |
AbstractHttpMessageConverter.readInternal(Class<? extends T> clazz,
HttpInputMessage inputMessage)
Abstract template method that reads the actual object.
|
Modifier and Type | Method and Description |
---|---|
protected T |
AbstractWireFeedHttpMessageConverter.readInternal(Class<? extends T> clazz,
HttpInputMessage inputMessage) |
Modifier and Type | Method and Description |
---|---|
Object |
AbstractJackson2HttpMessageConverter.read(Type type,
Class<?> contextClass,
HttpInputMessage inputMessage) |
Object |
AbstractJsonHttpMessageConverter.read(Type type,
Class<?> contextClass,
HttpInputMessage inputMessage) |
protected Object |
AbstractJackson2HttpMessageConverter.readInternal(Class<?> clazz,
HttpInputMessage inputMessage) |
protected Object |
AbstractJsonHttpMessageConverter.readInternal(Class<?> clazz,
HttpInputMessage inputMessage) |
Modifier and Type | Method and Description |
---|---|
protected com.google.protobuf.Message |
ProtobufHttpMessageConverter.readInternal(Class<? extends com.google.protobuf.Message> clazz,
HttpInputMessage inputMessage) |
Modifier and Type | Method and Description |
---|---|
T |
Jaxb2CollectionHttpMessageConverter.read(Type type,
Class<?> contextClass,
HttpInputMessage inputMessage) |
protected abstract T |
AbstractXmlHttpMessageConverter.readFromSource(Class<? extends T> clazz,
HttpHeaders headers,
Source source)
Abstract template method called from
AbstractHttpMessageConverter.read(Class, HttpInputMessage) . |
protected T |
SourceHttpMessageConverter.readInternal(Class<? extends T> clazz,
HttpInputMessage inputMessage) |
T |
AbstractXmlHttpMessageConverter.readInternal(Class<? extends T> clazz,
HttpInputMessage inputMessage) |
Modifier and Type | Method and Description |
---|---|
protected ResponseEntity<Object> |
ResponseEntityExceptionHandler.handleHttpMessageNotReadable(HttpMessageNotReadableException ex,
HttpHeaders headers,
HttpStatus status,
WebRequest request)
Customize the response for HttpMessageNotReadableException.
|
Modifier and Type | Method and Description |
---|---|
protected <T> Object |
AbstractMessageConverterMethodArgumentResolver.readWithMessageConverters(HttpInputMessage inputMessage,
MethodParameter parameter,
Type targetType)
Create the method argument value of the expected parameter type by reading
from the given HttpInputMessage.
|
protected <T> Object |
RequestResponseBodyMethodProcessor.readWithMessageConverters(NativeWebRequest webRequest,
MethodParameter parameter,
Type paramType) |
protected <T> Object |
AbstractMessageConverterMethodArgumentResolver.readWithMessageConverters(NativeWebRequest webRequest,
MethodParameter parameter,
Type paramType)
Create the method argument value of the expected parameter type by
reading from the given request.
|
Modifier and Type | Method and Description |
---|---|
protected ModelAndView |
DefaultHandlerExceptionResolver.handleHttpMessageNotReadable(HttpMessageNotReadableException ex,
HttpServletRequest request,
HttpServletResponse response,
Object handler)
Handle the case where a message converter
cannot read from a HTTP request.
|