Uniform : 리소스 식별하는 통일된 방식
Resource : 자원, URI로 식별할 수 있는 모든 것(제한 없음)
ex) HTML, 실시간 교통 정보 등 누구나 알 수 있는 모든 것
Identifier : 다른 항목과 구분하는데 필요한 정보
ex) 주민번호 등
: 즉, 리소스를 식별하는 통합된 방법
"URI는 로케이터(locator), 이름(name) 또는 둘 다 추가로 분류될 수 있다"


: 리소스가 있는 위치를 지정
scheme://[userinfo@]host[:port][/path][?query][#fragment]
ex) https://www.google.com:443/search?q=hello&hl=ko
: 주로 프로토콜 사용
scheme://[userinfo@]host[:port][/path][?query][#fragment]
https://www.google.com:443/search?q=hello&hl=ko
: URL에 사용자정보를 포함해서 인증
scheme://[userinfo@]host[:port][/path][?query][#fragment]
https://www.google.com:443/search?q=hello&hl=ko
: 호스트명
scheme://[userinfo@]host[:port][/path][?query][#fragment]
https://www.google.com:443/search?q=hello&hl=ko
: 포트(PORT)
scheme://[userinfo@]host[:port][/path][?query][#fragment]
https://www.google.com:443/search?q=hello&hl=ko
: 리소스 경로(path), 계층적 구조
scheme://[userinfo@]host[:port][/path][?query][#fragment]
https://www.google.com:443/search?q=hello&hl=ko
scheme://[userinfo@]host[:port][/path][?query][#fragment]
https://www.google.com:443/search?q=hello&hl=ko
scheme://[userinfo@]host[:port][/path][?query][#fragment]
https://docs.spring.io/spring-boot/docs/current/reference/html/gettingstarted.html#getting-started-introducing-spring-boot
: 리소스에 이름을부여
URN 예시) urn:isbn:8960777331 (어떤 책의 isbn URN)
URN 이름만으로 실제 리소스를 찾을 수 있는 방법이 보편화 되지 않음.
위치는 변할 수 있지만, 이름은 변하지 않음.
DNS 조회 : 도메인을 통해 IP 정보를 알아냄

GET 방식, 쿼리, HTTP 버전, host 정보 등이 담겨 있음.




200 OK : 정상응답
Content-Type : 클라이언트에게 반환된 컨텐츠의 유형
Content-Lenth : HTML 길이

클라이언트에게 응답 패킷이 도착하면, 웹 브라우저가 HTML 렌더링을 통해 다음과 같은 화면이 출력된다.
