Package org.springframework.http.server
Contains an abstraction over server-side HTTP. This package contains the
ServerHttpRequest and ServerHttpResponse, as well as a Servlet-based implementation of these interfaces.Interface Summary Interface Description PathContainer Structured representation of a URI path parsed viaPathContainer.parsePath(String)into a sequence ofPathContainer.SeparatorandPathContainer.PathSegmentelements.PathContainer.Element A path element, either separator or path segment.PathContainer.PathSegment Path segment element.PathContainer.Separator Path separator element.RequestPath Represents the complete path for a request.ServerHttpAsyncRequestControl A control that can put the processing of an HTTP request in asynchronous mode during which the response remains open until explicitly closed.ServerHttpRequest Represents a server-side HTTP request.ServerHttpResponse Represents a server-side HTTP response.Class Summary Class Description PathContainer.Options Options to customize parsing based on the type of input path.ServletServerHttpAsyncRequestControl AServerHttpAsyncRequestControlto use on Servlet containers (Servlet 3.0+).ServletServerHttpRequest ServerHttpRequestimplementation that is based on aHttpServletRequest.ServletServerHttpResponse ServerHttpResponseimplementation that is based on aHttpServletResponse.