Class RootUriTemplateHandler
java.lang.Object
org.springframework.boot.web.client.RootUriTemplateHandler
- All Implemented Interfaces:
org.springframework.web.util.UriTemplateHandler
public class RootUriTemplateHandler
extends Object
implements org.springframework.web.util.UriTemplateHandler
UriTemplateHandler
to set the root for URI that starts with '/'
.- Since:
- 1.4.0
-
Constructor Summary
ModifierConstructorDescriptionRootUriTemplateHandler
(String rootUri) Create a newRootUriTemplateHandler
instance.RootUriTemplateHandler
(String rootUri, org.springframework.web.util.UriTemplateHandler handler) Create a newRootUriTemplateHandler
instance.protected
RootUriTemplateHandler
(org.springframework.web.util.UriTemplateHandler handler) -
Method Summary
Modifier and TypeMethodDescriptionstatic RootUriTemplateHandler
Add aRootUriTemplateHandler
instance to the givenRestTemplate
.withHandlerWrapper
(Function<org.springframework.web.util.UriTemplateHandler, org.springframework.web.util.UriTemplateHandler> wrapper) Derives a newRootUriTemplateHandler
from this one, wrapping its delegateUriTemplateHandler
by applying the givenwrapper
.
-
Constructor Details
-
RootUriTemplateHandler
protected RootUriTemplateHandler(org.springframework.web.util.UriTemplateHandler handler) -
RootUriTemplateHandler
Create a newRootUriTemplateHandler
instance.- Parameters:
rootUri
- the root URI to be used to prefix relative URLs
-
RootUriTemplateHandler
public RootUriTemplateHandler(String rootUri, org.springframework.web.util.UriTemplateHandler handler) Create a newRootUriTemplateHandler
instance.- Parameters:
rootUri
- the root URI to be used to prefix relative URLshandler
- the delegate handler
-
-
Method Details
-
expand
- Specified by:
expand
in interfaceorg.springframework.web.util.UriTemplateHandler
-
expand
- Specified by:
expand
in interfaceorg.springframework.web.util.UriTemplateHandler
-
getRootUri
-
withHandlerWrapper
public RootUriTemplateHandler withHandlerWrapper(Function<org.springframework.web.util.UriTemplateHandler, org.springframework.web.util.UriTemplateHandler> wrapper) Derives a newRootUriTemplateHandler
from this one, wrapping its delegateUriTemplateHandler
by applying the givenwrapper
.- Parameters:
wrapper
- the wrapper to apply to the delegate URI template handler- Returns:
- the new handler
- Since:
- 2.3.10
-
addTo
public static RootUriTemplateHandler addTo(org.springframework.web.client.RestTemplate restTemplate, String rootUri) Add aRootUriTemplateHandler
instance to the givenRestTemplate
.- Parameters:
restTemplate
- theRestTemplate
to add the handler torootUri
- the root URI- Returns:
- the added
RootUriTemplateHandler
.
-