Interface ServerRequest.Headers
- Enclosing interface:
ServerRequest
public static interface ServerRequest.Headers
Represents the headers of the HTTP request.
- Since:
- 5.2
- Author:
- Arjen Poutsma
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionList<org.springframework.http.MediaType> accept()Get the list of acceptable media types, as specified by theAcceptheader.Get the list of acceptable charsets, as specified by theAccept-Charsetheader.Get the list of acceptable languages, as specified by theAccept-Languageheader.org.springframework.http.HttpHeadersGet the headers as an instance ofHttpHeaders.Get the length of the body in bytes, as specified by theContent-Lengthheader.Optional<org.springframework.http.MediaType> Get the media type of the body, as specified by theContent-Typeheader.firstHeader(String headerName) Get the first header value, if any, for the header for the given name.Get the header value(s), if any, for the header of the given name.host()Get the value of theHostheader, if available.List<org.springframework.http.HttpRange> range()Get the value of theRangeheader.
-
Method Details
-
accept
List<org.springframework.http.MediaType> accept()Get the list of acceptable media types, as specified by theAcceptheader.Returns an empty list if the acceptable media types are unspecified.
-
acceptCharset
-
acceptLanguage
List<Locale.LanguageRange> acceptLanguage()Get the list of acceptable languages, as specified by theAccept-Languageheader. -
contentLength
OptionalLong contentLength()Get the length of the body in bytes, as specified by theContent-Lengthheader. -
contentType
Optional<org.springframework.http.MediaType> contentType()Get the media type of the body, as specified by theContent-Typeheader. -
host
@Nullable InetSocketAddress host()Get the value of theHostheader, if available.If the header value does not contain a port, the port in the returned address will be
0. -
range
List<org.springframework.http.HttpRange> range()Get the value of theRangeheader.Returns an empty list when the range is unknown.
-
header
-
firstHeader
-
asHttpHeaders
org.springframework.http.HttpHeaders asHttpHeaders()Get the headers as an instance ofHttpHeaders.
-