Package | Description |
---|---|
org.springframework.http.client |
Contains an abstraction over client-side HTTP.
|
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.http.converter.xml |
Provides an HttpMessageConverter implementations for handling XML.
|
org.springframework.http.server |
Contains an abstraction over server-side HTTP.
|
org.springframework.mock.http |
Mock implementations of client/server-side HTTP abstractions.
|
org.springframework.mock.http.client |
Mock implementations of client-side HTTP abstractions.
|
org.springframework.web.bind.annotation.support |
Support classes for web annotation processing.
|
org.springframework.web.multipart.support |
Support classes for the multipart resolution framework.
|
org.springframework.web.servlet.mvc.annotation |
Support package for annotation-based Servlet MVC controllers.
|
org.springframework.web.servlet.mvc.method.annotation |
MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation package. |
Modifier and Type | Interface and Description |
---|---|
interface |
ClientHttpResponse
Represents a client-side HTTP response.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractClientHttpResponse
Abstract base for
ClientHttpResponse . |
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 form the given input message, and returns it.
|
T |
GenericHttpMessageConverter.read(Type type,
Class<?> contextClass,
HttpInputMessage inputMessage)
Read an object of the given type form the given input message, and returns it.
|
byte[] |
ByteArrayHttpMessageConverter.readInternal(Class<? extends byte[]> clazz,
HttpInputMessage inputMessage) |
protected Object |
ObjectToStringHttpMessageConverter.readInternal(Class<? extends Object> clazz,
HttpInputMessage inputMessage) |
protected Resource |
ResourceHttpMessageConverter.readInternal(Class<? extends Resource> clazz,
HttpInputMessage inputMessage) |
protected String |
StringHttpMessageConverter.readInternal(Class<? extends String> 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 |
MappingJackson2HttpMessageConverter.read(Type type,
Class<?> contextClass,
HttpInputMessage inputMessage) |
Object |
MappingJacksonHttpMessageConverter.read(Type type,
Class<?> contextClass,
HttpInputMessage inputMessage) |
protected Object |
MappingJackson2HttpMessageConverter.readInternal(Class<?> clazz,
HttpInputMessage inputMessage) |
protected Object |
MappingJacksonHttpMessageConverter.readInternal(Class<?> clazz,
HttpInputMessage inputMessage) |
Modifier and Type | Method and Description |
---|---|
T |
Jaxb2CollectionHttpMessageConverter.read(Type type,
Class<?> contextClass,
HttpInputMessage inputMessage) |
T |
AbstractXmlHttpMessageConverter.readInternal(Class<? extends T> clazz,
HttpInputMessage inputMessage) |
protected T |
SourceHttpMessageConverter.readInternal(Class<? extends T> clazz,
HttpInputMessage inputMessage) |
Modifier and Type | Interface and Description |
---|---|
interface |
ServerHttpRequest
Represents a server-side HTTP request.
|
Modifier and Type | Class and Description |
---|---|
class |
ServletServerHttpRequest
ServerHttpRequest implementation that is based on a HttpServletRequest . |
Modifier and Type | Class and Description |
---|---|
class |
MockHttpInputMessage
Mock implementation of
HttpInputMessage . |
Modifier and Type | Class and Description |
---|---|
class |
MockClientHttpResponse
Mock implementation of
ClientHttpResponse . |
Modifier and Type | Method and Description |
---|---|
protected HttpInputMessage |
HandlerMethodInvoker.createHttpInputMessage(NativeWebRequest webRequest)
Return a
HttpInputMessage for the given NativeWebRequest . |
Modifier and Type | Class and Description |
---|---|
class |
RequestPartServletServerHttpRequest
ServerHttpRequest implementation that accesses one part of a multipart
request. |
Modifier and Type | Method and Description |
---|---|
protected HttpInputMessage |
AnnotationMethodHandlerAdapter.createHttpInputMessage(javax.servlet.http.HttpServletRequest servletRequest)
Deprecated.
Template method for creating a new HttpInputMessage instance.
|
Modifier and Type | Method and Description |
---|---|
protected <T> Object |
AbstractMessageConverterMethodArgumentResolver.readWithMessageConverters(HttpInputMessage inputMessage,
MethodParameter methodParam,
Type targetType)
Create the method argument value of the expected parameter type by reading
from the given HttpInputMessage.
|
Copyright © 2015. All rights reserved.