Uses of Interface
org.springframework.http.HttpMessage
Packages that use HttpMessage Package Description org.springframework.http Contains a basic abstraction over client/server-side HTTP.org.springframework.http.client Contains an abstraction over client-side HTTP.org.springframework.http.client.reactive Abstractions for reactive HTTP client support includingClientHttpRequestandClientHttpResponseas well as aClientHttpConnector.org.springframework.http.client.support This package provides generic HTTP support classes, to be used by higher-level classes like RestTemplate.org.springframework.http.codec org.springframework.http.converter.json Provides HttpMessageConverter implementations for handling JSON.org.springframework.http.server Contains an abstraction over server-side HTTP.org.springframework.http.server.reactive Abstractions for reactive HTTP server support including aServerHttpRequestandServerHttpResponsealong with anHttpHandlerfor processing.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.mock.http.client.reactive Mock implementations of reactive HTTP client contracts.org.springframework.mock.http.server.reactive Mock implementations of reactive HTTP server contracts.org.springframework.web.multipart.support Support classes for the multipart resolution framework.Uses of HttpMessage in org.springframework.http
Subinterfaces of HttpMessage in org.springframework.http Modifier and Type Interface Description interfaceHttpInputMessageinterfaceHttpOutputMessageinterfaceHttpRequestinterfaceReactiveHttpInputMessageAn "reactive" HTTP input message that exposes the input asPublisher.interfaceReactiveHttpOutputMessageA "reactive" HTTP output message that accepts output as aPublisher.interfaceStreamingHttpOutputMessageRepresents an HTTP output message that allows for setting a streaming body.interfaceZeroCopyHttpOutputMessageSub-interface ofReactiveOutputMessagethat has support for "zero-copy" file transfers.Uses of HttpMessage in org.springframework.http.client
Subinterfaces of HttpMessage in org.springframework.http.client Modifier and Type Interface Description interfaceAsyncClientHttpRequestDeprecated.as of Spring 5.0, in favor ofClientRequestinterfaceClientHttpRequestRepresents a client-side HTTP request.interfaceClientHttpResponseRepresents a client-side HTTP response.Classes in org.springframework.http.client that implement HttpMessage Modifier and Type Class Description classAbstractClientHttpRequestAbstract base forClientHttpRequestthat makes sure that headers and body are not written multiple times.classAbstractClientHttpResponseAbstract base forClientHttpResponse.Uses of HttpMessage in org.springframework.http.client.reactive
Subinterfaces of HttpMessage in org.springframework.http.client.reactive Modifier and Type Interface Description interfaceClientHttpRequestRepresents a client-side reactive HTTP request.interfaceClientHttpResponseRepresents a client-side reactive HTTP response.Classes in org.springframework.http.client.reactive that implement HttpMessage Modifier and Type Class Description classAbstractClientHttpRequestBase class forClientHttpRequestimplementations.classClientHttpRequestDecoratorWraps anotherClientHttpRequestand delegates all methods to it.classClientHttpResponseDecoratorWraps anotherClientHttpResponseand delegates all methods to it.Uses of HttpMessage in org.springframework.http.client.support
Classes in org.springframework.http.client.support that implement HttpMessage Modifier and Type Class Description classHttpRequestWrapperProvides a convenient implementation of theHttpRequestinterface that can be overridden to adapt the request.Uses of HttpMessage in org.springframework.http.codec
Methods in org.springframework.http.codec with parameters of type HttpMessage Modifier and Type Method Description protected MediaTypeDecoderHttpMessageReader. getContentType(HttpMessage inputMessage)Determine the Content-Type of the HTTP message based on the "Content-Type" header or otherwise default toMediaType.APPLICATION_OCTET_STREAM.Uses of HttpMessage in org.springframework.http.converter.json
Classes in org.springframework.http.converter.json that implement HttpMessage Modifier and Type Class Description classMappingJacksonInputMessageHttpInputMessagethat can eventually stores a Jackson view that will be used to deserialize the message.Uses of HttpMessage in org.springframework.http.server
Subinterfaces of HttpMessage in org.springframework.http.server Modifier and Type Interface Description interfaceServerHttpRequestRepresents a server-side HTTP request.interfaceServerHttpResponseRepresents a server-side HTTP response.Classes in org.springframework.http.server that implement HttpMessage Modifier and Type Class Description classServletServerHttpRequestServerHttpRequestimplementation that is based on aHttpServletRequest.classServletServerHttpResponseServerHttpResponseimplementation that is based on aHttpServletResponse.Uses of HttpMessage in org.springframework.http.server.reactive
Subinterfaces of HttpMessage in org.springframework.http.server.reactive Modifier and Type Interface Description interfaceServerHttpRequestRepresents a reactive server-side HTTP request.interfaceServerHttpResponseRepresents a reactive server-side HTTP response.Classes in org.springframework.http.server.reactive that implement HttpMessage Modifier and Type Class Description classAbstractListenerServerHttpResponseAbstract base class for listener-based server responses, e.g.classAbstractServerHttpRequestCommon base class forServerHttpRequestimplementations.classAbstractServerHttpResponseBase class forServerHttpResponseimplementations.classHttpHeadResponseDecoratorServerHttpResponsedecorator for HTTP HEAD requests.classServerHttpRequestDecoratorWraps anotherServerHttpRequestand delegates all methods to it.classServerHttpResponseDecoratorWraps anotherServerHttpResponseand delegates all methods to it.Uses of HttpMessage in org.springframework.mock.http
Classes in org.springframework.mock.http that implement HttpMessage Modifier and Type Class Description classMockHttpInputMessageMock implementation ofHttpInputMessage.classMockHttpOutputMessageMock implementation ofHttpOutputMessage.Uses of HttpMessage in org.springframework.mock.http.client
Classes in org.springframework.mock.http.client that implement HttpMessage Modifier and Type Class Description classMockAsyncClientHttpRequestDeprecated.as of Spring 5.0, with no direct replacementclassMockClientHttpRequestMock implementation ofClientHttpRequest.classMockClientHttpResponseMock implementation ofClientHttpResponse.Uses of HttpMessage in org.springframework.mock.http.client.reactive
Classes in org.springframework.mock.http.client.reactive that implement HttpMessage Modifier and Type Class Description classMockClientHttpRequestMock implementation ofClientHttpRequest.classMockClientHttpResponseMock implementation ofClientHttpResponse.Uses of HttpMessage in org.springframework.mock.http.server.reactive
Classes in org.springframework.mock.http.server.reactive that implement HttpMessage Modifier and Type Class Description classMockServerHttpRequestMock extension ofAbstractServerHttpRequestfor use in tests without an actual server.classMockServerHttpResponseMock extension ofAbstractServerHttpResponsefor use in tests without an actual server.Uses of HttpMessage in org.springframework.web.multipart.support
Classes in org.springframework.web.multipart.support that implement HttpMessage Modifier and Type Class Description classRequestPartServletServerHttpRequestServerHttpRequestimplementation that accesses one part of a multipart request.