HTTP 요청
GET /hello?username=yeonhee HTTP/1.1
Host: localhost:8080
HTTP 응답
HTTP/1.1 200 OK
Content-Type: text/plain;charset=utf-8
Content-Length: 11
hello world
HTTP 요청 메세지를 편리하게 사용할 수 있도록 HTTP 요청 메세지를 파싱한다. 그리고 그 결과를 HttpServletRequest 객체에 담아서 제공한다.
POST /save HTTP/1.1
Host: localhost:8080
Content-Type: application/x-www-form-urlencoded
username=yeonhee&age=25
요청 메세지는 클라이언트의 요청이 들어오고 응답이 나갈 때까지가 생존 범위
HttpServletRequest, HttpServletResponse를 사용할 때 중요한 점은 이 객체들이 HTTP 요청 메세지, HTTP 응답 메세지를 편리하게 사용하도록 도와주는 객체라는 점이다. 따라서 이 기능에 대해 깊이있는 이해를 하려면 HTTP 스펙이 제공하는 요청, 응답 메세지 자체를 이해해야 한다.