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.web.bind.annotation.support |
Support classes for web annotation processing.
|
org.springframework.web.multipart.support |
Support classes for the multipart resolution framework.
|
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 |
---|---|
java.awt.image.BufferedImage |
BufferedImageHttpMessageConverter.read(java.lang.Class<? extends java.awt.image.BufferedImage> clazz,
HttpInputMessage inputMessage) |
MultiValueMap<java.lang.String,java.lang.String> |
FormHttpMessageConverter.read(java.lang.Class<? extends MultiValueMap<java.lang.String,?>> clazz,
HttpInputMessage inputMessage) |
T |
HttpMessageConverter.read(java.lang.Class<? extends T> clazz,
HttpInputMessage inputMessage)
Read an object of the given type form the given input message, and returns it.
|
T |
AbstractHttpMessageConverter.read(java.lang.Class<? extends T> clazz,
HttpInputMessage inputMessage)
This implementation simple delegates to
AbstractHttpMessageConverter.readInternal(Class, HttpInputMessage) . |
T |
GenericHttpMessageConverter.read(java.lang.reflect.Type type,
java.lang.Class<?> contextClass,
HttpInputMessage inputMessage)
Read an object of the given type form the given input message, and returns it.
|
byte[] |
ByteArrayHttpMessageConverter.readInternal(java.lang.Class<? extends byte[]> clazz,
HttpInputMessage inputMessage) |
protected java.lang.Object |
ObjectToStringHttpMessageConverter.readInternal(java.lang.Class<? extends java.lang.Object> clazz,
HttpInputMessage inputMessage) |
protected Resource |
ResourceHttpMessageConverter.readInternal(java.lang.Class<? extends Resource> clazz,
HttpInputMessage inputMessage) |
protected java.lang.String |
StringHttpMessageConverter.readInternal(java.lang.Class<? extends java.lang.String> clazz,
HttpInputMessage inputMessage) |
protected abstract T |
AbstractHttpMessageConverter.readInternal(java.lang.Class<? extends T> clazz,
HttpInputMessage inputMessage)
Abstract template method that reads the actual object.
|
Modifier and Type | Method and Description |
---|---|
protected T |
AbstractWireFeedHttpMessageConverter.readInternal(java.lang.Class<? extends T> clazz,
HttpInputMessage inputMessage) |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
MappingJackson2HttpMessageConverter.read(java.lang.reflect.Type type,
java.lang.Class<?> contextClass,
HttpInputMessage inputMessage) |
java.lang.Object |
MappingJacksonHttpMessageConverter.read(java.lang.reflect.Type type,
java.lang.Class<?> contextClass,
HttpInputMessage inputMessage) |
protected java.lang.Object |
MappingJackson2HttpMessageConverter.readInternal(java.lang.Class<?> clazz,
HttpInputMessage inputMessage) |
protected java.lang.Object |
MappingJacksonHttpMessageConverter.readInternal(java.lang.Class<?> clazz,
HttpInputMessage inputMessage) |
Modifier and Type | Method and Description |
---|---|
T |
Jaxb2CollectionHttpMessageConverter.read(java.lang.reflect.Type type,
java.lang.Class<?> contextClass,
HttpInputMessage inputMessage) |
protected T |
SourceHttpMessageConverter.readInternal(java.lang.Class<? extends T> clazz,
HttpInputMessage inputMessage) |
T |
AbstractXmlHttpMessageConverter.readInternal(java.lang.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 | 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. |
Copyright © 2021. All rights reserved.