Package | Description |
---|---|
org.springframework.web.client |
Core package of the client-side web support.
|
org.springframework.web.util |
Miscellaneous web utility classes, such as HTML escaping,
Log4j initialization, and cookie handling.
|
Modifier and Type | Method and Description |
---|---|
UriTemplateHandler |
RestTemplate.getUriTemplateHandler()
Return the configured URI template handler.
|
UriTemplateHandler |
AsyncRestTemplate.getUriTemplateHandler()
Deprecated.
Return the configured URI template handler.
|
Modifier and Type | Method and Description |
---|---|
void |
RestTemplate.setUriTemplateHandler(UriTemplateHandler handler)
Customize how URI templates are expanded into URI instances.
|
void |
AsyncRestTemplate.setUriTemplateHandler(UriTemplateHandler handler)
Deprecated.
This property has the same purpose as the corresponding property on the
RestTemplate . |
Modifier and Type | Interface and Description |
---|---|
interface |
UriBuilderFactory
Factory to create
UriBuilder instances with shared configuration
such as a base URI, an encoding mode strategy, and others across all URI
builder instances created through a factory. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractUriTemplateHandler
Deprecated.
as of 5.0 in favor of
DefaultUriBuilderFactory |
class |
DefaultUriBuilderFactory
UriBuilderFactory that relies on UriComponentsBuilder for
the actual building of the URI. |
class |
DefaultUriTemplateHandler
Deprecated.
as of 5.0 in favor of
DefaultUriBuilderFactory .
Note: |