Class UriComponents
- java.lang.Object
- org.springframework.web.util.UriComponents
- All Implemented Interfaces:
Serializable
public abstract class UriComponents extends Object implements Serializable
Represents an immutable collection of URI components, mapping component type to String values. Contains convenience getters for all components. Effectively similar toURI, but with more powerful encoding options and support for URI template variables.- Since:
- 3.1
- Author:
- Arjen Poutsma, Juergen Hoeller, Rossen Stoyanchev
- See Also:
UriComponentsBuilder, Serialized Form
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceUriComponents.UriTemplateVariablesDefines the contract for URI Template variables.
Constructor Summary
Constructors Modifier Constructor Description protectedUriComponents(String scheme, String fragment)
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract voidcopyToUriComponentsBuilder(UriComponentsBuilder builder)Set all components of the given UriComponentsBuilder.UriComponentsencode()Invoke this after expanding URI variables to encode the resulting URI component values.abstract UriComponentsencode(Charset charset)A variant ofencode()with a charset other than "UTF-8".UriComponentsexpand(Object... uriVariableValues)Replace all URI template variables with the values from a given array.UriComponentsexpand(Map<String,?> uriVariables)Replace all URI template variables with the values from a given map.UriComponentsexpand(UriComponents.UriTemplateVariables uriVariables)Replace all URI template variables with the values from the givenUriComponents.UriTemplateVariables.StringgetFragment()Return the fragment.abstract StringgetHost()Return the host.abstract StringgetPath()Return the path.abstract List<String>getPathSegments()Return the list of path segments.abstract intgetPort()Return the port.abstract StringgetQuery()Return the query.abstract MultiValueMap<String,String>getQueryParams()Return the map of query parameters.StringgetScheme()Return the scheme.abstract StringgetSchemeSpecificPart()Return the scheme specific part.abstract StringgetUserInfo()Return the user info.abstract UriComponentsnormalize()Normalize the path removing sequences like "path/..".StringtoString()A simple pass-through totoUriString().abstract URItoUri()Create aURIfrom this instance as follows:abstract StringtoUriString()Concatenate all URI components to return the fully formed URI String.
Constructor Detail
UriComponents
protected UriComponents(@Nullable String scheme, @Nullable String fragment)
Method Detail
getFragment
@Nullable public final String getFragment()
Return the fragment. Can benull.
getSchemeSpecificPart
@Nullable public abstract String getSchemeSpecificPart()
Return the scheme specific part. Can benull.
getUserInfo
@Nullable public abstract String getUserInfo()
Return the user info. Can benull.
getPort
public abstract int getPort()
Return the port.-1if no port has been set.
getPathSegments
public abstract List<String> getPathSegments()
Return the list of path segments. Empty if no path has been set.
getQueryParams
public abstract MultiValueMap<String,String> getQueryParams()
Return the map of query parameters. Empty if no query has been set.
encode
public final UriComponents encode()
Invoke this after expanding URI variables to encode the resulting URI component values.In comparison to
UriComponentsBuilder.encode(), this method only replaces non-ASCII and illegal (within a given URI component type) characters, but not characters with reserved meaning. For most cases,UriComponentsBuilder.encode()is more likely to give the expected result.- See Also:
UriComponentsBuilder.encode()
encode
public abstract UriComponents encode(Charset charset)
A variant ofencode()with a charset other than "UTF-8".- Parameters:
charset- the charset to use for encoding- See Also:
UriComponentsBuilder.encode(Charset)
expand
public final UriComponents expand(Map<String,?> uriVariables)
Replace all URI template variables with the values from a given map.The given map keys represent variable names; the corresponding values represent variable values. The order of variables is not significant.
- Parameters:
uriVariables- the map of URI variables- Returns:
- the expanded URI components
expand
public final UriComponents expand(Object... uriVariableValues)
Replace all URI template variables with the values from a given array.The given array represents variable values. The order of variables is significant.
- Parameters:
uriVariableValues- the URI variable values- Returns:
- the expanded URI components
expand
public final UriComponents expand(UriComponents.UriTemplateVariables uriVariables)
Replace all URI template variables with the values from the givenUriComponents.UriTemplateVariables.- Parameters:
uriVariables- the URI template values- Returns:
- the expanded URI components
normalize
public abstract UriComponents normalize()
Normalize the path removing sequences like "path/..". Note that normalization is applied to the full path, and not to individual path segments.- See Also:
StringUtils.cleanPath(String)
toUriString
public abstract String toUriString()
Concatenate all URI components to return the fully formed URI String.This method does nothing more than a simple concatenation based on current values. That means it could produce different results if invoked before vs after methods that can change individual values such as
encode,expand, ornormalize.
toUri
public abstract URI toUri()
Create aURIfrom this instance as follows:If the current instance is
encoded, form the full URI String viatoUriString(), and then pass it to the single argumentURIconstructor which preserves percent encoding.If not yet encoded, pass individual URI component values to the multi-argument
URIconstructor which quotes illegal characters that cannot appear in their respective URI component.
toString
public final String toString()
A simple pass-through totoUriString().
copyToUriComponentsBuilder
protected abstract void copyToUriComponentsBuilder(UriComponentsBuilder builder)
Set all components of the given UriComponentsBuilder.- Since:
- 4.2