DefaultUriBuilderFactory()
Default constructor without a base URI.
The target address must be specified on each UriBuilder.
DefaultUriBuilderFactory(baseUriTemplate: String)
Constructor with a base URI.
The given URI template is parsed via UriComponentsBuilder#fromUriString and then applied as a base URI to every UriBuilder via UriComponentsBuilder#uriComponents unless the UriBuilder itself was created with a URI template that already has a target address.
baseUriTemplate - the URI template to use a base URL
DefaultUriBuilderFactory(baseUri: UriComponentsBuilder)
Variant of #DefaultUriBuilderFactory(String) with a UriComponentsBuilder.