Uses of Enum Class
org.springframework.http.HttpStatus
Packages that use HttpStatus
Package
Description
Contains a basic abstraction over client/server-side HTTP.
Contains an abstraction over client-side HTTP.
Abstractions for reactive HTTP client support including
 
ClientHttpRequest and
 ClientHttpResponse as well as a
 ClientHttpConnector.Contains an abstraction over server-side HTTP.
Abstractions for reactive HTTP server support including a
 
ServerHttpRequest and
 ServerHttpResponse along with an
 HttpHandler for processing.Mock implementations of client-side HTTP abstractions.
Mock implementations of reactive HTTP client contracts.
Contains built-in 
ResponseCreator
 implementations.Support for testing Spring WebFlux server endpoints via
 
WebTestClient.Common, generic interfaces that define minimal boundary points
 between Spring's web infrastructure and other framework modules.
Core package of the client-side web support.
Provides generic filter base classes allowing for bean-style configuration.
Common infrastructure for handler method processing, as used by
 Spring MVC's 
org.springframework.web.servlet.mvc.method package.Generic support classes for handler method processing.
Provides a reactive 
WebClient
 that builds on top of the
 org.springframework.http.client.reactive reactive HTTP adapter layer.Classes supporting the 
org.springframework.web.reactive.function.client package.Provides the types that make up Spring's functional web framework for Reactive environments.
Support for result handling through view resolution.
Core interfaces and classes for Spring's generic, reactive web support.
Provides common WebHandler implementations and a
 
WebHandlerDecorator.Provides servlets that integrate with the application context
 infrastructure, and the core interfaces and classes for the
 Spring web MVC framework.
Annotation-based setup for Spring MVC.
Provides the types that make up Spring's functional web framework for Servlet environments.
Standard controller implementations for the Servlet MVC framework that comes with
 Spring.
MVC infrastructure for annotation-based handler method processing, building on the
 
org.springframework.web.method.annotation package.Provides standard View and ViewResolver implementations,
 including abstract base classes for custom implementations.
TransportHandler
 implementation classes as well as a concrete
 SockJsService.- 
Uses of HttpStatus in org.springframework.http
Methods in org.springframework.http that return HttpStatusModifier and TypeMethodDescriptionResponseEntity.getStatusCode()Return the HTTP status code of the response.static HttpStatusHttpStatus.resolve(int statusCode) Resolve the given status code to anHttpStatus, if possible.static HttpStatusHttpStatus.valueOf(int statusCode) Return theHttpStatusenum constant with the specified numeric value.static HttpStatusReturns the enum constant of this class with the specified name.static HttpStatus[]HttpStatus.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.springframework.http with parameters of type HttpStatusModifier and TypeMethodDescriptionstatic ProblemDetailProblemDetail.forStatus(HttpStatus status) Create aProblemDetailinstance with the given status code.static ResponseEntity.BodyBuilderResponseEntity.status(HttpStatus status) Create a builder with the given status.static HttpStatus.SeriesHttpStatus.Series.valueOf(HttpStatus status) Deprecated.ProblemDetail.withStatus(HttpStatus status) Variant ofProblemDetail.setStatus(int)for chained initialization.Constructors in org.springframework.http with parameters of type HttpStatusModifierConstructorDescriptionResponseEntity(HttpStatus status) Create aResponseEntitywith a status code only.ResponseEntity(MultiValueMap<String, String> headers, HttpStatus status) Create aResponseEntitywith headers and a status code.ResponseEntity(T body, HttpStatus status) Create aResponseEntitywith a body and status code.ResponseEntity(T body, MultiValueMap<String, String> headers, HttpStatus status) Create aResponseEntitywith a body, headers, and a status code. - 
Uses of HttpStatus in org.springframework.http.client
Methods in org.springframework.http.client that return HttpStatusModifier and TypeMethodDescriptionAbstractClientHttpResponse.getStatusCode()ClientHttpResponse.getStatusCode()Get the HTTP status code as anHttpStatusenum value. - 
Uses of HttpStatus in org.springframework.http.client.reactive
Methods in org.springframework.http.client.reactive that return HttpStatusModifier and TypeMethodDescriptionClientHttpResponse.getStatusCode()Return the HTTP status code as anHttpStatusenum value.ClientHttpResponseDecorator.getStatusCode() - 
Uses of HttpStatus in org.springframework.http.server
Methods in org.springframework.http.server with parameters of type HttpStatusModifier and TypeMethodDescriptionvoidDelegatingServerHttpResponse.setStatusCode(HttpStatus status) voidServerHttpResponse.setStatusCode(HttpStatus status) Set the HTTP status code of the response.voidServletServerHttpResponse.setStatusCode(HttpStatus status)  - 
Uses of HttpStatus in org.springframework.http.server.reactive
Methods in org.springframework.http.server.reactive that return HttpStatusModifier and TypeMethodDescriptionAbstractServerHttpResponse.getStatusCode()ServerHttpResponse.getStatusCode()Return the status code that has been set, or otherwise fall back on the status of the response from the underlying server.ServerHttpResponseDecorator.getStatusCode()Methods in org.springframework.http.server.reactive with parameters of type HttpStatusModifier and TypeMethodDescriptionbooleanAbstractServerHttpResponse.setStatusCode(HttpStatus status) booleanServerHttpResponse.setStatusCode(HttpStatus status) Set the HTTP status code of the response.booleanServerHttpResponseDecorator.setStatusCode(HttpStatus status)  - 
Uses of HttpStatus in org.springframework.mock.http.client
Methods in org.springframework.mock.http.client that return HttpStatusConstructors in org.springframework.mock.http.client with parameters of type HttpStatusModifierConstructorDescriptionMockClientHttpResponse(byte[] body, HttpStatus statusCode) Constructor with response body as a byte array.MockClientHttpResponse(InputStream body, HttpStatus statusCode) Constructor with response body as InputStream. - 
Uses of HttpStatus in org.springframework.mock.http.client.reactive
Methods in org.springframework.mock.http.client.reactive that return HttpStatusConstructors in org.springframework.mock.http.client.reactive with parameters of type HttpStatus - 
Uses of HttpStatus in org.springframework.test.web.client.response
Methods in org.springframework.test.web.client.response with parameters of type HttpStatusModifier and TypeMethodDescriptionstatic DefaultResponseCreatorMockRestResponseCreators.withStatus(HttpStatus status) ResponseCreatorwith a specific HTTP status.Constructors in org.springframework.test.web.client.response with parameters of type HttpStatusModifierConstructorDescriptionprotectedDefaultResponseCreator(HttpStatus statusCode) Protected constructor. - 
Uses of HttpStatus in org.springframework.test.web.reactive.server
Methods in org.springframework.test.web.reactive.server that return HttpStatusModifier and TypeMethodDescriptionExchangeResult.getStatus()Return the HTTP status code as anHttpStatusenum value.Methods in org.springframework.test.web.reactive.server with parameters of type HttpStatusModifier and TypeMethodDescriptionStatusAssertions.isEqualTo(HttpStatus status) Assert the response status as anHttpStatus. - 
Uses of HttpStatus in org.springframework.web
Methods in org.springframework.web that return HttpStatusModifier and TypeMethodDescriptiondefault HttpStatusErrorResponse.getStatus()Return the HTTP status to use for the response.Constructors in org.springframework.web with parameters of type HttpStatusModifierConstructorDescriptionErrorResponseException(HttpStatus status) Constructor with a well-knownHttpStatus.ErrorResponseException(HttpStatus status, Throwable cause) Constructor with a well-knownHttpStatusand an optional cause. - 
Uses of HttpStatus in org.springframework.web.client
Methods in org.springframework.web.client that return HttpStatusModifier and TypeMethodDescriptionHttpStatusCodeException.getStatusCode()Return the HTTP status code.Methods in org.springframework.web.client with parameters of type HttpStatusModifier and TypeMethodDescriptionstatic HttpClientErrorExceptionHttpClientErrorException.create(String message, HttpStatus statusCode, String statusText, HttpHeaders headers, byte[] body, Charset charset) Variant ofHttpClientErrorException.create(HttpStatus, String, HttpHeaders, byte[], Charset)with an optional prepared message.static HttpClientErrorExceptionHttpClientErrorException.create(HttpStatus statusCode, String statusText, HttpHeaders headers, byte[] body, Charset charset) CreateHttpClientErrorExceptionor an HTTP status specific sub-class.static HttpServerErrorExceptionHttpServerErrorException.create(String message, HttpStatus statusCode, String statusText, HttpHeaders headers, byte[] body, Charset charset) Variant ofHttpServerErrorException.create(String, HttpStatus, String, HttpHeaders, byte[], Charset)with an optional prepared message.static HttpServerErrorExceptionHttpServerErrorException.create(HttpStatus statusCode, String statusText, HttpHeaders headers, byte[] body, Charset charset) Create anHttpServerErrorExceptionor an HTTP status specific sub-class.protected voidDefaultResponseErrorHandler.handleError(ClientHttpResponse response, HttpStatus statusCode) Handle the error based on the resolved status code.voidExtractingResponseErrorHandler.handleError(ClientHttpResponse response, HttpStatus statusCode) protected booleanDefaultResponseErrorHandler.hasError(HttpStatus statusCode) Template method called fromDefaultResponseErrorHandler.hasError(ClientHttpResponse).protected booleanExtractingResponseErrorHandler.hasError(HttpStatus statusCode) Method parameters in org.springframework.web.client with type arguments of type HttpStatusModifier and TypeMethodDescriptionvoidExtractingResponseErrorHandler.setStatusMapping(Map<HttpStatus, Class<? extends RestClientException>> statusMapping) Set the mapping from HTTP status code toRestClientExceptionsubclass.Constructors in org.springframework.web.client with parameters of type HttpStatusModifierConstructorDescriptionHttpClientErrorException(String message, HttpStatus statusCode, String statusText, HttpHeaders headers, byte[] body, Charset responseCharset) Constructor with a status code and status text, headers, and content, and an prepared message.HttpClientErrorException(HttpStatus statusCode) Constructor with a status code only.HttpClientErrorException(HttpStatus statusCode, String statusText) Constructor with a status code and status text.HttpClientErrorException(HttpStatus statusCode, String statusText, byte[] body, Charset responseCharset) Constructor with a status code and status text, and content.HttpClientErrorException(HttpStatus statusCode, String statusText, HttpHeaders headers, byte[] body, Charset responseCharset) Constructor with a status code and status text, headers, and content.HttpServerErrorException(String message, HttpStatus statusCode, String statusText, HttpHeaders headers, byte[] body, Charset charset) Constructor with a status code and status text, headers, content, and an prepared message.HttpServerErrorException(HttpStatus statusCode) Constructor with a status code only.HttpServerErrorException(HttpStatus statusCode, String statusText) Constructor with a status code and status text.HttpServerErrorException(HttpStatus statusCode, String statusText, byte[] body, Charset charset) Constructor with a status code and status text, and content.HttpServerErrorException(HttpStatus statusCode, String statusText, HttpHeaders headers, byte[] body, Charset charset) Constructor with a status code and status text, headers, and content.protectedHttpStatusCodeException(String message, HttpStatus statusCode, String statusText, HttpHeaders responseHeaders, byte[] responseBody, Charset responseCharset) Construct instance with anHttpStatus, status text, content, and a response charset.protectedHttpStatusCodeException(HttpStatus statusCode) Construct a new instance with anHttpStatus.protectedHttpStatusCodeException(HttpStatus statusCode, String statusText) Construct a new instance with anHttpStatusand status text.protectedHttpStatusCodeException(HttpStatus statusCode, String statusText, byte[] responseBody, Charset responseCharset) Construct instance with anHttpStatus, status text, and content.protectedHttpStatusCodeException(HttpStatus statusCode, String statusText, HttpHeaders responseHeaders, byte[] responseBody, Charset responseCharset) Construct instance with anHttpStatus, status text, content, and a response charset. - 
Uses of HttpStatus in org.springframework.web.filter
Methods in org.springframework.web.filter that return HttpStatusModifier and TypeMethodDescriptionRelativeRedirectFilter.getRedirectStatus()Return the configured redirect status.Methods in org.springframework.web.filter with parameters of type HttpStatusModifier and TypeMethodDescriptionvoidRelativeRedirectFilter.setRedirectStatus(HttpStatus status) Set the default HTTP Status to use for redirects. - 
Uses of HttpStatus in org.springframework.web.method
Methods in org.springframework.web.method that return HttpStatusModifier and TypeMethodDescriptionprotected HttpStatusHandlerMethod.getResponseStatus()Return the specified response status, if any. - 
Uses of HttpStatus in org.springframework.web.method.support
Methods in org.springframework.web.method.support that return HttpStatusModifier and TypeMethodDescriptionModelAndViewContainer.getStatus()Return the configured HTTP status, if any.Methods in org.springframework.web.method.support with parameters of type HttpStatusModifier and TypeMethodDescriptionvoidModelAndViewContainer.setStatus(HttpStatus status) Provide an HTTP status that will be passed on to with theModelAndViewused for view rendering purposes. - 
Uses of HttpStatus in org.springframework.web.reactive.function.client
Methods in org.springframework.web.reactive.function.client that return HttpStatusModifier and TypeMethodDescriptionWebClientResponseException.getStatusCode()Return the HTTP status code value.ClientResponse.statusCode()Return the HTTP status code as anHttpStatusenum value.Methods in org.springframework.web.reactive.function.client with parameters of type HttpStatusModifier and TypeMethodDescriptionstatic ClientResponse.BuilderClientResponse.create(HttpStatus statusCode) Create a response builder with the given status code and using default strategies for reading the body.static ClientResponse.BuilderClientResponse.create(HttpStatus statusCode, List<HttpMessageReader<?>> messageReaders) Create a response builder with the given status code and message body readers.static ClientResponse.BuilderClientResponse.create(HttpStatus statusCode, ExchangeStrategies strategies) Create a response builder with the given status code and strategies for reading the body.ClientResponse.Builder.statusCode(HttpStatus statusCode) Set the status code of the response.Method parameters in org.springframework.web.reactive.function.client with type arguments of type HttpStatusModifier and TypeMethodDescriptionWebClient.ResponseSpec.onStatus(Predicate<HttpStatus> statusPredicate, Function<ClientResponse, reactor.core.publisher.Mono<? extends Throwable>> exceptionFunction) Provide a function to map specific error status codes to an error signal to be propagated downstream instead of the response.static ExchangeFilterFunctionExchangeFilterFunctions.statusError(Predicate<HttpStatus> statusPredicate, Function<ClientResponse, ? extends Throwable> exceptionFunction) Return a filter that generates an error signal when the givenHttpStatuspredicate matches. - 
Uses of HttpStatus in org.springframework.web.reactive.function.client.support
Methods in org.springframework.web.reactive.function.client.support that return HttpStatus - 
Uses of HttpStatus in org.springframework.web.reactive.function.server
Methods in org.springframework.web.reactive.function.server that return HttpStatusModifier and TypeMethodDescriptionServerResponse.statusCode()Return the status code of this response.Methods in org.springframework.web.reactive.function.server with parameters of type HttpStatusModifier and TypeMethodDescriptionEntityResponse.Builder.status(HttpStatus status) Set the HTTP status.RenderingResponse.Builder.status(HttpStatus status) Set the HTTP status.static ServerResponse.BodyBuilderServerResponse.status(HttpStatus status) Create a builder with the given HTTP status. - 
Uses of HttpStatus in org.springframework.web.reactive.result.view
Methods in org.springframework.web.reactive.result.view that return HttpStatusModifier and TypeMethodDescriptionRedirectView.getStatusCode()Get the redirect status code to use.Rendering.status()Return the HTTP status to set the response to.Methods in org.springframework.web.reactive.result.view with parameters of type HttpStatusModifier and TypeMethodDescriptionvoidRedirectView.setStatusCode(HttpStatus statusCode) Set an alternate redirect status code such asTEMPORARY_REDIRECTorPERMANENT_REDIRECT.Rendering.Builder.status(HttpStatus status) Specify the status to use for the response.Constructors in org.springframework.web.reactive.result.view with parameters of type HttpStatusModifierConstructorDescriptionRedirectView(String redirectUrl, HttpStatus statusCode) Create a newRedirectViewwith the given URL and an alternate redirect status code such asTEMPORARY_REDIRECTorPERMANENT_REDIRECT. - 
Uses of HttpStatus in org.springframework.web.server
Constructors in org.springframework.web.server with parameters of type HttpStatusModifierConstructorDescriptionResponseStatusException(HttpStatus status) Constructor with a response status.ResponseStatusException(HttpStatus status, String reason) Constructor with a response status and a reason to add to the exception message as explanation.ResponseStatusException(HttpStatus status, String reason, Throwable cause) Constructor with a response status and a reason to add to the exception message as explanation, as well as a nested exception. - 
Uses of HttpStatus in org.springframework.web.server.handler
Methods in org.springframework.web.server.handler that return HttpStatusModifier and TypeMethodDescriptionprotected HttpStatusResponseStatusExceptionHandler.determineStatus(Throwable ex) Deprecated.as of 5.3 in favor ofResponseStatusExceptionHandler.determineRawStatusCode(Throwable). - 
Uses of HttpStatus in org.springframework.web.servlet
Methods in org.springframework.web.servlet that return HttpStatusModifier and TypeMethodDescriptionModelAndView.getStatus()Return the configured HTTP status for the response, if any.Methods in org.springframework.web.servlet with parameters of type HttpStatusModifier and TypeMethodDescriptionvoidModelAndView.setStatus(HttpStatus status) Set the HTTP status to use for the response.Constructors in org.springframework.web.servlet with parameters of type HttpStatusModifierConstructorDescriptionModelAndView(String viewName, Map<String, ?> model, HttpStatus status) Create a new ModelAndView given a view name, model, and HTTP status.ModelAndView(String viewName, HttpStatus status) Create a new ModelAndView given a view name and HTTP status. - 
Uses of HttpStatus in org.springframework.web.servlet.config.annotation
Methods in org.springframework.web.servlet.config.annotation with parameters of type HttpStatusModifier and TypeMethodDescriptionvoidViewControllerRegistry.addStatusController(String urlPath, HttpStatus statusCode) Map a simple controller to the given URL path (or pattern) in order to set the response status to the given code without rendering a body.RedirectViewControllerRegistration.setStatusCode(HttpStatus statusCode) Set the specific redirect 3xx status code to use.ViewControllerRegistration.setStatusCode(HttpStatus statusCode) Set the status code to set on the response. - 
Uses of HttpStatus in org.springframework.web.servlet.function
Methods in org.springframework.web.servlet.function that return HttpStatusModifier and TypeMethodDescriptionServerResponse.statusCode()Return the status code of this response.Methods in org.springframework.web.servlet.function with parameters of type HttpStatusModifier and TypeMethodDescriptionEntityResponse.Builder.status(HttpStatus status) Set the HTTP status.RenderingResponse.Builder.status(HttpStatus status) Set the HTTP status.static ServerResponse.BodyBuilderServerResponse.status(HttpStatus status) Create a builder with the given HTTP status. - 
Uses of HttpStatus in org.springframework.web.servlet.mvc
Methods in org.springframework.web.servlet.mvc that return HttpStatusModifier and TypeMethodDescriptionParameterizableViewController.getStatusCode()Return the configured HTTP status code ornull.Methods in org.springframework.web.servlet.mvc with parameters of type HttpStatusModifier and TypeMethodDescriptionvoidParameterizableViewController.setStatusCode(HttpStatus statusCode) Configure the HTTP status code that this controller should set on the response. - 
Uses of HttpStatus in org.springframework.web.servlet.mvc.method.annotation
Methods in org.springframework.web.servlet.mvc.method.annotation with parameters of type HttpStatusModifier and TypeMethodDescriptionprotected ResponseEntity<Object>ResponseEntityExceptionHandler.handleAsyncRequestTimeoutException(AsyncRequestTimeoutException ex, HttpHeaders headers, HttpStatus status, WebRequest webRequest) Customize the response for AsyncRequestTimeoutException.protected ResponseEntity<Object>ResponseEntityExceptionHandler.handleBindException(BindException ex, HttpHeaders headers, HttpStatus status, WebRequest request) Customize the response for BindException.protected ResponseEntity<Object>ResponseEntityExceptionHandler.handleConversionNotSupported(ConversionNotSupportedException ex, HttpHeaders headers, HttpStatus status, WebRequest request) Customize the response for ConversionNotSupportedException.protected ResponseEntity<Object>ResponseEntityExceptionHandler.handleExceptionInternal(Exception ex, Object body, HttpHeaders headers, HttpStatus status, WebRequest webRequest) A single place to customize the response body of all exception types.protected ResponseEntity<Object>ResponseEntityExceptionHandler.handleHttpMediaTypeNotAcceptable(HttpMediaTypeNotAcceptableException ex, HttpHeaders headers, HttpStatus status, WebRequest request) Customize the response for HttpMediaTypeNotAcceptableException.protected ResponseEntity<Object>ResponseEntityExceptionHandler.handleHttpMediaTypeNotSupported(HttpMediaTypeNotSupportedException ex, HttpHeaders headers, HttpStatus status, WebRequest request) Customize the response for HttpMediaTypeNotSupportedException.protected ResponseEntity<Object>ResponseEntityExceptionHandler.handleHttpMessageNotReadable(HttpMessageNotReadableException ex, HttpHeaders headers, HttpStatus status, WebRequest request) Customize the response for HttpMessageNotReadableException.protected ResponseEntity<Object>ResponseEntityExceptionHandler.handleHttpMessageNotWritable(HttpMessageNotWritableException ex, HttpHeaders headers, HttpStatus status, WebRequest request) Customize the response for HttpMessageNotWritableException.protected ResponseEntity<Object>ResponseEntityExceptionHandler.handleHttpRequestMethodNotSupported(HttpRequestMethodNotSupportedException ex, HttpHeaders headers, HttpStatus status, WebRequest request) Customize the response for HttpRequestMethodNotSupportedException.protected ResponseEntity<Object>ResponseEntityExceptionHandler.handleMethodArgumentNotValid(MethodArgumentNotValidException ex, HttpHeaders headers, HttpStatus status, WebRequest request) Customize the response for MethodArgumentNotValidException.protected ResponseEntity<Object>ResponseEntityExceptionHandler.handleMissingPathVariable(MissingPathVariableException ex, HttpHeaders headers, HttpStatus status, WebRequest request) Customize the response for MissingPathVariableException.protected ResponseEntity<Object>ResponseEntityExceptionHandler.handleMissingServletRequestParameter(MissingServletRequestParameterException ex, HttpHeaders headers, HttpStatus status, WebRequest request) Customize the response for MissingServletRequestParameterException.protected ResponseEntity<Object>ResponseEntityExceptionHandler.handleMissingServletRequestPart(MissingServletRequestPartException ex, HttpHeaders headers, HttpStatus status, WebRequest request) Customize the response for MissingServletRequestPartException.protected ResponseEntity<Object>ResponseEntityExceptionHandler.handleNoHandlerFoundException(NoHandlerFoundException ex, HttpHeaders headers, HttpStatus status, WebRequest request) Customize the response for NoHandlerFoundException.protected ResponseEntity<Object>ResponseEntityExceptionHandler.handleServletRequestBindingException(ServletRequestBindingException ex, HttpHeaders headers, HttpStatus status, WebRequest request) Customize the response for ServletRequestBindingException.protected ResponseEntity<Object>ResponseEntityExceptionHandler.handleTypeMismatch(TypeMismatchException ex, HttpHeaders headers, HttpStatus status, WebRequest request) Customize the response for TypeMismatchException. - 
Uses of HttpStatus in org.springframework.web.servlet.view
Methods in org.springframework.web.servlet.view that return HttpStatusModifier and TypeMethodDescriptionprotected HttpStatusRedirectView.getHttp11StatusCode(HttpServletRequest request, HttpServletResponse response, String targetUrl) Determines the status code to use for HTTP 1.1 compatible requests.Methods in org.springframework.web.servlet.view with parameters of type HttpStatusModifier and TypeMethodDescriptionvoidRedirectView.setStatusCode(HttpStatus statusCode) Set the status code for this view. - 
Uses of HttpStatus in org.springframework.web.socket.sockjs.transport.handler
Methods in org.springframework.web.socket.sockjs.transport.handler that return HttpStatusModifier and TypeMethodDescriptionprotected abstract HttpStatusAbstractHttpReceivingTransportHandler.getResponseStatus()protected HttpStatusXhrReceivingTransportHandler.getResponseStatus() 
series()directly