Package | Description |
---|---|
org.springframework.web.util |
Miscellaneous web utility classes, such as HTML escaping,
log4j initialization, and cookie handling.
|
Modifier and Type | Method and Description |
---|---|
UriComponents |
UriComponentsBuilder.build()
Build a
UriComponents instance from the various components contained in this builder. |
UriComponents |
UriComponentsBuilder.build(boolean encoded)
Build a
UriComponents instance from the various components
contained in this builder. |
UriComponents |
UriComponentsBuilder.buildAndExpand(Map<String,?> uriVariables)
Build a
UriComponents instance and replaces URI template variables
with the values from a map. |
UriComponents |
UriComponentsBuilder.buildAndExpand(Object... uriVariableValues)
Build a
UriComponents instance and replaces URI template variables
with the values from an array. |
UriComponents |
UriComponents.encode()
Encode all URI components using their specific encoding rules, and returns the
result as a new
UriComponents instance. |
abstract UriComponents |
UriComponents.encode(String encoding)
Encode all URI components using their specific encoding rules, and
returns the result as a new
UriComponents instance. |
UriComponents |
UriComponents.expand(Map<String,?> uriVariables)
Replace all URI template variables with the values from a given map.
|
UriComponents |
UriComponents.expand(Object... uriVariableValues)
Replace all URI template variables with the values from a given array.
|
abstract UriComponents |
UriComponents.normalize()
Normalize the path removing sequences like "path/..".
|
Copyright © 2015. All rights reserved.