Interface HttpRequest

All Superinterfaces:
HttpMessage
All Known Subinterfaces:
ClientHttpRequest, ServerHttpRequest, ServerHttpRequest
All Known Implementing Classes:
AbstractClientHttpRequest, AbstractServerHttpRequest, HttpRequestWrapper, MockClientHttpRequest, MockServerHttpRequest, RequestPartServletServerHttpRequest, ServerHttpRequestDecorator, ServletServerHttpRequest

public interface HttpRequest extends HttpMessage
Represents an HTTP request message, consisting of a method and a URI.
Since:
3.1
Author:
Arjen Poutsma
  • Method Summary

    Modifier and Type
    Method
    Description
    Return the HTTP method of the request.
    Deprecated.
    as of Spring Framework 6.0 in favor of getMethod() and HttpMethod.name()
    Return the URI of the request (including a query string if any, but only if it is well-formed for a URI representation).

    Methods inherited from interface org.springframework.http.HttpMessage

    getHeaders
  • Method Details

    • getMethod

      HttpMethod getMethod()
      Return the HTTP method of the request.
      Returns:
      the HTTP method as an HttpMethod value
      See Also:
    • getMethodValue

      @Deprecated String getMethodValue()
      Deprecated.
      as of Spring Framework 6.0 in favor of getMethod() and HttpMethod.name()
      Return the HTTP method of the request as a String value.
      Returns:
      the HTTP method as a plain String
      Since:
      5.0
      See Also:
    • getURI

      URI getURI()
      Return the URI of the request (including a query string if any, but only if it is well-formed for a URI representation).
      Returns:
      the URI of the request (never null)