본문 바로가기
Spring/인프런 토비의 Spring Boot

섹션 2-5 [스프링 부트 시작하기] HTTP 요청과 응답

by include_hoany 2024. 5. 29.

HTTP 요청과 응답

 

HTTP

웹 Request와 Response의 구조를 이해하고 내용을 확인할 수 있어야 한다.

 

Request

  • Request Line: Method, Path, HTTP Version
  • Headers
  • Message Body
http -v ":8080/hello?name=Spring"
GET /hello?nameSpring HTTP/1.1

Accept: */*
Accept-Encoding: gzip, deflate
Connection: keep-alive
Host: localhost:8080
User-Agent: IntelliJ HTTP Client/IntelliJ IDEA 2024.1

 

Response

  • Status Line: HTTP Version, Status Code, Status Text
  • Headers
  • Message Body
HTTP/1.1 200 
Content-Type: text/plain;charset=UTF-8
Content-Length: 17
Date: Tue, 28 May 2024 10:15:02 GMT

Hello Spring