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.servlet.mvc.annotation |
Support package for annotation-based Servlet MVC controllers.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ClientHttpRequest
Represents a client-side HTTP request.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractClientHttpRequest
Abstract base for
ClientHttpRequest that makes sure that headers
and body are not written multiple times. |
Modifier and Type | Method and Description |
---|---|
void |
BufferedImageHttpMessageConverter.write(BufferedImage image,
MediaType contentType,
HttpOutputMessage outputMessage) |
void |
FormHttpMessageConverter.write(MultiValueMap<String,?> map,
MediaType contentType,
HttpOutputMessage outputMessage) |
void |
AbstractHttpMessageConverter.write(T t,
MediaType contentType,
HttpOutputMessage outputMessage)
This implementation delegates to
AbstractHttpMessageConverter.getDefaultContentType(Object) if a content
type was not provided, calls AbstractHttpMessageConverter.getContentLength(T, org.springframework.http.MediaType) , and sets the corresponding headers
on the output message. |
void |
HttpMessageConverter.write(T t,
MediaType contentType,
HttpOutputMessage outputMessage)
Write an given object to the given output message.
|
protected void |
ByteArrayHttpMessageConverter.writeInternal(byte[] bytes,
HttpOutputMessage outputMessage) |
protected void |
ObjectToStringHttpMessageConverter.writeInternal(Object obj,
HttpOutputMessage outputMessage) |
protected void |
ResourceHttpMessageConverter.writeInternal(Resource resource,
HttpOutputMessage outputMessage) |
protected void |
StringHttpMessageConverter.writeInternal(String str,
HttpOutputMessage outputMessage) |
protected abstract void |
AbstractHttpMessageConverter.writeInternal(T t,
HttpOutputMessage outputMessage)
Abstract template method that writes the actual body.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractWireFeedHttpMessageConverter.writeInternal(T wireFeed,
HttpOutputMessage outputMessage) |
Modifier and Type | Method and Description |
---|---|
protected void |
MappingJackson2HttpMessageConverter.writeInternal(Object object,
HttpOutputMessage outputMessage) |
protected void |
MappingJacksonHttpMessageConverter.writeInternal(Object object,
HttpOutputMessage outputMessage) |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractXmlHttpMessageConverter.writeInternal(T t,
HttpOutputMessage outputMessage) |
protected void |
SourceHttpMessageConverter.writeInternal(T t,
HttpOutputMessage outputMessage) |
Modifier and Type | Interface and Description |
---|---|
interface |
ServerHttpResponse
Represents a server-side HTTP response.
|
Modifier and Type | Class and Description |
---|---|
class |
ServletServerHttpResponse
ServerHttpResponse implementation that is based on a HttpServletResponse . |
Modifier and Type | Class and Description |
---|---|
class |
MockHttpOutputMessage
Mock implementation of
HttpOutputMessage . |
Modifier and Type | Class and Description |
---|---|
class |
MockClientHttpRequest
Mock implementation of
ClientHttpRequest . |
Modifier and Type | Method and Description |
---|---|
protected HttpOutputMessage |
HandlerMethodInvoker.createHttpOutputMessage(NativeWebRequest webRequest)
Return a
HttpOutputMessage for the given NativeWebRequest . |
Modifier and Type | Method and Description |
---|---|
protected HttpOutputMessage |
AnnotationMethodHandlerAdapter.createHttpOutputMessage(javax.servlet.http.HttpServletResponse servletResponse)
Deprecated.
Template method for creating a new HttpOuputMessage instance.
|
Copyright © 2015. All rights reserved.