Home > AI > Backend > SpringBoot > spring-web >

HTTPStatus

ACCEPTED202
ALREADY_REPORTED208
BAD_GATEWAY502
BAD_REQUEST400
BANDWIDTH_LIMIT_EXCEEDED509
ACCEPTED 202 Accepted.
ALREADY_REPORTED

208 Already Reported.
BAD_GATEWAY502 Bad Gateway.
BAD_REQUEST400 Bad Request.
BANDWIDTH_LIMIT_EXCEEDED509 Bandwidth Limit Exceeded
CHECKPOINT103 Checkpoint.
CONFLICT409 Conflict.
CONTINUE100 Continue.
CREATED201 Created.
DESTINATION_LOCKEDDeprecated. See WebDAV Draft Changes
EXPECTATION_FAILED417 Expectation Failed.
FAILED_DEPENDENCY424 Failed Dependency.
FORBIDDEN403 Forbidden.
FOUND302 Found.
GATEWAY_TIMEOUT504 Gateway Timeout.
GONE410 Gone.
HTTP_VERSION_NOT_SUPPORTED505 HTTP Version Not Supported.
I_AM_A_TEAPOT418 I'm a teapot.
IM_USED226 IM Used.
INSUFFICIENT_SPACE_ON_RESOURCEDeprecated. See WebDAV Draft Changes
INSUFFICIENT_STORAGE507 Insufficient Storage
INTERNAL_SERVER_ERROR500 Internal Server Error.
LENGTH_REQUIRED411 Length Required.
LOCKED423 Locked.
LOOP_DETECTED508 Loop Detected
METHOD_FAILUREDeprecated. See WebDAV Draft Changes
METHOD_NOT_ALLOWED405 Method Not Allowed.
MOVED_PERMANENTLY301 Moved Permanently.
MOVED_TEMPORARILYDeprecated. in favor of FOUND which will be returned from HttpStatus.valueOf(302)
MULTI_STATUS207 Multi-Status.
MULTIPLE_CHOICES300 Multiple Choices.
NETWORK_AUTHENTICATION_REQUIRED511 Network Authentication Required.
NO_CONTENT204 No Content.
NON_AUTHORITATIVE_INFORMATION203 Non-Authoritative Information.
NOT_ACCEPTABLE406 Not Acceptable.
NOT_EXTENDED510 Not Extended
NOT_FOUND404 Not Found.
NOT_IMPLEMENTED501 Not Implemented.
NOT_MODIFIED304 Not Modified.
OK200 OK.
PARTIAL_CONTENT206 Partial Content.
PAYLOAD_TOO_LARGE413 Payload Too Large.
PAYMENT_REQUIRED402 Payment Required.
PERMANENT_REDIRECT308 Permanent Redirect.
PRECONDITION_FAILED412 Precondition failed.
PRECONDITION_REQUIRED428 Precondition Required.
PROCESSING102 Processing.
PROXY_AUTHENTICATION_REQUIRED407 Proxy Authentication Required.
REQUEST_ENTITY_TOO_LARGEDeprecated. in favor of PAYLOAD_TOO_LARGE which will be returned from HttpStatus.valueOf(413)
REQUEST_HEADER_FIELDS_TOO_LARGE431 Request Header Fields Too Large.
REQUEST_TIMEOUT408 Request Timeout.
REQUEST_URI_TOO_LONGDeprecated. in favor of URI_TOO_LONG which will be returned from HttpStatus.valueOf(414)
REQUESTED_RANGE_NOT_SATISFIABLE416 Requested Range Not Satisfiable.
RESET_CONTENT205 Reset Content.
SEE_OTHER303 See Other.
SERVICE_UNAVAILABLE503 Service Unavailable.
SWITCHING_PROTOCOLS101 Switching Protocols.
TEMPORARY_REDIRECT307 Temporary Redirect.
TOO_EARLY425 Too Early.
TOO_MANY_REQUESTS429 Too Many Requests.
UNAUTHORIZED401 Unauthorized.
UNAVAILABLE_FOR_LEGAL_REASONS451 Unavailable For Legal Reasons.
UNPROCESSABLE_ENTITY422 Unprocessable Entity.
UNSUPPORTED_MEDIA_TYPE415 Unsupported Media Type.
UPGRADE_REQUIRED426 Upgrade Required.
URI_TOO_LONG 414 URI Too Long.
USE_PROXYDeprecated. due to security concerns regarding in-band configuration of a proxy
VARIANT_ALSO_NEGOTIATES506 Variant Also Negotiates

Leave a Reply