notes/pl/java/libfws/spring/rest/features/uri-components-builder.txt
Ihar Hancharenka 759967edf2 m
2023-08-27 11:18:25 +03:00

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();