Clarify RestTemplateBuilder rootUri documentation

Closes gh-15343
This commit is contained in:
Madhura Bhave 2019-08-01 15:59:24 -07:00
parent 5f3364326b
commit 80f568bd47
1 changed files with 4 additions and 1 deletions

View File

@ -133,7 +133,10 @@ public class RestTemplateBuilder {
/**
* Set a root URL that should be applied to each request that starts with {@code '/'}.
* See {@link RootUriTemplateHandler} for details.
* Since this works by adding a {@link UriTemplateHandler} to the
* {@link RestTemplate}, the root URL will only apply when {@code String} variants of
* the {@link RestTemplate} methods are used for specifying the request URL. See
* {@link RootUriTemplateHandler} for details.
* @param rootUri the root URI or {@code null}
* @return a new builder instance
*/