start-line :
header-field : field-name ":" OWS field-value OWS (OWS:띄어쓰기 허용)
message body :
요청 메시지 ex :
GET /save?id=1&name=java HTTP/1.1
Host: localhost:8080
응답 메시지 ex :
HTTP/1.1 200 OK
Content-Type: text/html:charset=UTF-8
Content-Length: 456
(empty)
<html>
</html>
GET /
/save?id=1&name=java
HTTP/1.1
Host: localhost:8080
HTTP/1.1
200
OK
(사람이 이해할 수 있는 짧은 상태 코드 설명)Content-Type: text/html:charset=UTF-8
Content-Length: 456
<html>
</html>