UriComponents | UriComponentsBuilder.build() | Build a UriComponents instance from the various components contained in this builder. |
---|
UriComponents | UriComponentsBuilder.build(boolean encoded) | |
---|
UriComponents | UriComponentsBuilder.buildAndExpand(Object... uriVariableValues) | Build a UriComponents instance and replaces URI template variables with the values from an array. |
---|
UriComponents | UriComponentsBuilder.buildAndExpand(Map<String,?> uriVariables) | Build a UriComponents instance and replaces URI template variables with the values from a map. |
---|
UriComponents | UriComponents.encode() | Invoke this after expanding URI variables to encode the resulting URI component values. |
---|
abstract UriComponents | UriComponents.encode(Charset charset) | A variant of encode() with a charset other than "UTF-8". |
---|
UriComponents | UriComponents.expand(Object... uriVariableValues) | Replace all URI template variables with the values from a given array. |
---|
UriComponents | UriComponents.expand(Map<String,?> uriVariables) | Replace all URI template variables with the values from a given map. |
---|
UriComponents | UriComponents.expand(UriComponents.UriTemplateVariables uriVariables) | |
---|
protected UriComponents | DefaultUriTemplateHandler.expandAndEncode(UriComponentsBuilder builder, Object[] uriVariables) | 已过时。 |
---|
protected UriComponents | DefaultUriTemplateHandler.expandAndEncode(UriComponentsBuilder builder, Map<String,?> uriVariables) | 已过时。 |
---|
abstract UriComponents | UriComponents.normalize() | Normalize the path removing sequences like "path/..". |
---|