1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00

Update http-status-codes.md

This commit is contained in:
tylerren 2022-08-21 22:32:30 +08:00 committed by GitHub
parent 81f1291ca0
commit f40b5ee068
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,7 +55,7 @@ HTTP 状态码用于描述 HTTP 请求的结果比如2xx 就代表请求被
- **401 Unauthorized** 未认证却请求需要认证之后才能访问的资源。
- **403 Forbidden** 直接拒绝HTTP请求不处理。一般用来针对非法请求。
- **404 Not Found** 你请求的资源未在服务端找到。比如你请求某个用户的信息,服务端并没有找到指定的用户。
- **409 Conflict** 表示请求的资源与服务端当前的状态在冲突,请求无法被处理。
- **409 Conflict** 表示请求的资源与服务端当前的状态在冲突,请求无法被处理。
### 5xx Server Error服务端错误状态码