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 an HttpMessageConverter implementations for handling JSON.
|
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 |
HttpMessageConverter.read(Class<? extends T> clazz,
HttpInputMessage inputMessage)
Read an object of the given type form the given input message, and returns it.
|
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 actualy object.
|
Modifier and Type | Method and Description |
---|---|
protected T |
AbstractWireFeedHttpMessageConverter.readInternal(Class<? extends T> clazz,
HttpInputMessage inputMessage) |
Modifier and Type | Method and Description |
---|---|
protected Object |
MappingJacksonHttpMessageConverter.readInternal(Class<?> clazz,
HttpInputMessage inputMessage) |
protected Object |
MappingJackson2HttpMessageConverter.readInternal(Class<?> clazz,
HttpInputMessage inputMessage) |
Modifier and Type | Method and Description |
---|---|
protected ModelAndView |
DefaultHandlerExceptionResolver.handleHttpMessageNotReadable(HttpMessageNotReadableException ex,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
Object handler)
Handle the case where a message converter
cannot read from a HTTP request.
|
Copyright © 2014. All rights reserved.