зеркало из
https://github.com/iharh/notes.git
synced 2025-10-29 20:56:06 +02:00
10 строки
310 B
Plaintext
10 строки
310 B
Plaintext
https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/web/util/UriComponentsBuilder.html
|
|
|
|
sample
|
|
return UriComponentsBuilder.newInstance()
|
|
.scheme("http")
|
|
.host("localhost").port(18080)
|
|
.path("some/rest/path")
|
|
.build()
|
|
.toUriString();
|