URI
- Uniform Resource Identifier
- scheme:[//authority][/path][?query][#fragment]
Sample
ftp://ftp.is.co.za/rfc/rfc1808.txt
https://tools.ietf.org/html/rfc3986
mailto:john@doe.com
tel:+1-816-555-1212
urn:oasis:names:docbook:dtd:xml:4.1
urn:isbn:1234567890
UriComponentBuilder를 이용하여 URI를 생성하기
Spring Framework에서 UriComponenBulder를 이용해서 UriComponents를 생성을 할수 있다.
이를 통해 URI를 좀더 쉽게 생성을 할수 있다.
UriComponents uriComponents = UriComponentsBuilder.newInstance()
.scheme("http")
.host("www.baeldung.com")
.path("/junit 5")
.build()
.encode();
'Programing > Java' 카테고리의 다른 글
Gradle, Maven (0) | 2018.12.10 |
---|---|
Java CocurrentHashMap (0) | 2018.11.27 |
Queue 자료 구조 (0) | 2018.11.12 |
Jackson ObjectMapper (0) | 2018.10.25 |
Java Jdbc를 이용한 데이터베이스 접근하기 (0) | 2018.10.23 |