티스토리 뷰

반응형

 

URI(Uniform Resource Identifier) 

리소스를 식별하는 통합된 방법

  • Uniform: 리소스 식별하는 통일된 방식
  • Resource: 자원, URI로 식별할 수 있는 모든 것(제한 없음) 
  • Identifier: 다른 항목과 구분하는데 필요한 정보

 

URI ?   URL?   URN. ?

"URI는 로케이터(locator), 이름(name) 또는 둘 다 추가로 분류될 수 있다" 

URI는 URL과 URL을 포함하는 상위개념이다.

 

 

URL(Uniform Resource Locator) 현재 웹브라우저에서 사용하고 있다. 식별자를 경로형태로 쓰고 있다. 

URN (Uniform Resource Name)  이름으로 리소스를 특정한다. 식별자를 이름형태로 쓴다. 

 

URN방식은 실제로 거의 사용되어질 일이 없다. 책을 분류하기 위해 만들어진 isbn 정도로만 사용되고 있으니 개념정도만 알아도 좋다. 

 

 

 

URL 분석하기

https://www.google.com/search?q=hello&hl=ko 

 

 

URL 전체 문법

  • scheme://[userinfo@]host[:port][/path][?query][#fragment] 
  • https://www.google.com:443/search?q=hello&hl=ko 
  • 프로토콜(https) 
  • 호스트명(www.google.com) 
  • 포트 번호(443) 
  • 패스(/search) 
  • 쿼리 파라미터(q=hello&hl=ko) 

 

 

URL scheme

scheme://[userinfo@]host[:port][/path][?query][#fragment] 

https://www.google.com:443/search?q=hello&hl=ko 

주로 프로토콜 사용

프로토콜: 어떤 방식으로 자원에 접근할 것인가 하는 약속 규칙

     예) http, https, ftp 등등

http는 80 포트, https는 443 포트를 주로 사용, 포트는 생략 가능

httpshttp에 보안 추가 (HTTP Secure) 

 

 

URL userinfo

scheme://[userinfo@]host[:port][/path][?query][#fragment] 

 

URL에 사용자정보를 포함해서 인증하는 것이며 거의 사용하지 않음 

 

 

URL host

scheme://[userinfo@]host[:port][/path][?query][#fragment] 

https://www.google.com:443/search?q=hello&hl=ko 

 

호스트명이라 하며 도메인명 또는 IP 주소를 직접 사용가능하다. 

 

 

URL port

scheme://[userinfo@]host[:port][/path][?query][#fragment] 

https://www.google.com:443/search?q=hello&hl=ko 

 

접속포트로 일반적으로 생략가능 하며 생략시 http는 80, https는 443이다. 

 

 

URL path

scheme://[userinfo@]host[:port][/path][?query][#fragment] 

https://www.google.com:443/search?q=hello&hl=ko 

 

리소스 경로(path)이다. 보통 계층적 구조로 되어있다. 

eg. 

  • /home/file1.jpg
  • /members
  • /members/100
  • /items/iphone12 

 

 

URL query

scheme://[userinfo@]host[:port][/path][?query][#fragment] 

https://www.google.com:443/search?q=hello&hl=ko 

 

key=value 형태로 ?로 시작하고 &으로 추가 기능을 넣을 수 있다.

?keyA=valueA&keyB=valueB 

query parameter, query string 등으로 불린다, 웹서버에 제공하는 파라미터, 문자 형태 

 

 

 

 

URL fragment

scheme://[userinfo@]host[:port][/path][?query][#fragment] 

https://docs.spring.io/spring-boot/docs/current/reference/html/getting-started. html#getting-started-introducing-spring-boot 

 

html 내부 북마크 등에 사용하며 서버에 전송하는 정보는 아니다. 

 

 

 


 

Reference 

강의 | [인프런] 모든 개발자를 위한 HTTP 웹 기본 지식 - 김영한 

반응형