쿼츠 블로그를 위해 대공사

This commit is contained in:
2026-04-08 13:07:41 +09:00
parent 123642831e
commit 1319881195
606 changed files with 50625 additions and 2 deletions
@@ -0,0 +1,16 @@
GET은 일반적으로 body 메시지가 없다.
( 사용할 수는 있는데 GET 메시지에 body가 허용되지 않는 서버들이 있음. )
##### 요청
GET /members/100 HTTP/1.1
Host: localhost:8080
##### 응답
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 34
{
"username": "young",
"age": 20
}