public class UriComponentsBuilder extends Object implements UriBuilder, Cloneable
UriComponents
.
Typical usage involves:
UriComponentsBuilder
with one of the static factory methods
(such as fromPath(String)
or fromUri(URI)
)scheme(String)
,
userInfo(String)
, host(String)
, port(int)
, path(String)
,
pathSegment(String...)
, queryParam(String, Object...)
, and
fragment(String)
.UriComponents
instance with the build()
method.newInstance()
,
fromPath(String)
,
fromUri(URI)
Modifier | Constructor and Description |
---|---|
protected |
UriComponentsBuilder()
Default constructor.
|
protected |
UriComponentsBuilder(UriComponentsBuilder other)
Create a deep copy of the given UriComponentsBuilder.
|
Modifier and Type | Method and Description |
---|---|
UriComponents |
build()
Build a
UriComponents instance from the various components contained in this builder. |
UriComponents |
build(boolean encoded)
Build a
UriComponents instance from the various components
contained in this builder. |
URI |
build(Map<String,?> uriVariables)
Build a
URI instance and replaces URI template variables
with the values from a map. |
URI |
build(Object... uriVariables)
Build a
URI instance and replaces URI template variables
with the values from an array. |
UriComponents |
buildAndExpand(Map<String,?> uriVariables)
Build a
UriComponents instance and replaces URI template variables
with the values from a map. |
UriComponents |
buildAndExpand(Object... uriVariableValues)
Build a
UriComponents instance and replaces URI template variables
with the values from an array. |
Object |
clone()
Public declaration of Object's
clone() method. |
UriComponentsBuilder |
cloneBuilder()
Clone this
UriComponentsBuilder . |
UriComponentsBuilder |
encode()
Request to have the URI template pre-encoded at build time, and
URI variables encoded separately when expanded.
|
UriComponentsBuilder |
encode(Charset charset)
A variant of
encode() with a charset other than "UTF-8". |
UriComponentsBuilder |
fragment(String fragment)
Set the URI fragment.
|
static UriComponentsBuilder |
fromHttpRequest(HttpRequest request)
Create a new
UriComponents object from the URI associated with
the given HttpRequest while also overlaying with values from the headers
"Forwarded" (RFC 7239),
or "X-Forwarded-Host", "X-Forwarded-Port", and "X-Forwarded-Proto" if
"Forwarded" is not found. |
static UriComponentsBuilder |
fromHttpUrl(String httpUrl)
Create a URI components builder from the given HTTP URL String.
|
static UriComponentsBuilder |
fromOriginHeader(String origin)
Create an instance by parsing the "Origin" header of an HTTP request.
|
static UriComponentsBuilder |
fromPath(String path)
Create a builder that is initialized with the given path.
|
static UriComponentsBuilder |
fromUri(URI uri)
Create a builder that is initialized with the given
URI . |
static UriComponentsBuilder |
fromUriString(String uri)
Create a builder that is initialized with the given URI string.
|
UriComponentsBuilder |
host(String host)
Set the URI host which may contain URI template variables, and may also
be
null to clear the host of this builder. |
static UriComponentsBuilder |
newInstance()
Create a new, empty builder.
|
UriComponentsBuilder |
path(String path)
Append the given path to the existing path of this builder.
|
UriComponentsBuilder |
pathSegment(String... pathSegments)
Append path segments to the existing path.
|
UriComponentsBuilder |
port(int port)
Set the URI port.
|
UriComponentsBuilder |
port(String port)
Set the URI port .
|
UriComponentsBuilder |
query(String query)
Parse the given query string into query parameters where parameters are
separated with
'&' and their values, if any, with '=' . |
UriComponentsBuilder |
queryParam(String name,
Collection<?> values)
Variant of
UriBuilder.queryParam(String, Object...) with a Collection. |
UriComponentsBuilder |
queryParam(String name,
Object... values)
Append the given query parameter.
|
UriComponentsBuilder |
queryParams(MultiValueMap<String,String> params)
Add multiple query parameters and values.
|
UriComponentsBuilder |
replacePath(String path)
Set the path of this builder overriding the existing path values.
|
UriComponentsBuilder |
replaceQuery(String query)
Clear existing query parameters and then delegate to
UriBuilder.query(String) . |
UriComponentsBuilder |
replaceQueryParam(String name,
Collection<?> values)
Variant of
UriBuilder.replaceQueryParam(String, Object...) with a Collection. |
UriComponentsBuilder |
replaceQueryParam(String name,
Object... values)
Set the query parameter values replacing existing values, or if no
values are given, the query parameter is removed.
|
UriComponentsBuilder |
replaceQueryParams(MultiValueMap<String,String> params)
Set the query parameter values after removing all existing ones.
|
UriComponentsBuilder |
scheme(String scheme)
Set the URI scheme which may contain URI template variables,
and may also be
null to clear the scheme of this builder. |
UriComponentsBuilder |
schemeSpecificPart(String ssp)
Set the URI scheme-specific-part.
|
String |
toUriString()
Build a URI String.
|
UriComponentsBuilder |
uri(URI uri)
Initialize components of this builder from components of the given URI.
|
UriComponentsBuilder |
uriComponents(UriComponents uriComponents)
Set or append individual URI components of this builder from the values
of the given
UriComponents instance. |
UriComponentsBuilder |
uriVariables(Map<String,Object> uriVariables)
Configure URI variables to be expanded at build time.
|
UriComponentsBuilder |
userInfo(String userInfo)
Set the URI user info which may contain URI template variables, and
may also be
null to clear the user info of this builder. |
protected UriComponentsBuilder()
newInstance()
,
fromPath(String)
,
fromUri(URI)
protected UriComponentsBuilder(UriComponentsBuilder other)
other
- the other builder to copy frompublic static UriComponentsBuilder newInstance()
UriComponentsBuilder
public static UriComponentsBuilder fromPath(String path)
path
- the path to initialize withUriComponentsBuilder
public static UriComponentsBuilder fromUri(URI uri)
URI
.uri
- the URI to initialize withUriComponentsBuilder
public static UriComponentsBuilder fromUriString(String uri)
Note: The presence of reserved characters can prevent
correct parsing of the URI string. For example if a query parameter
contains '='
or '&'
characters, the query string cannot
be parsed unambiguously. Such values should be substituted for URI
variables to enable correct parsing:
String uriString = "/hotels/42?filter={value}"; UriComponentsBuilder.fromUriString(uriString).buildAndExpand("hot&cold");
uri
- the URI string to initialize withUriComponentsBuilder
public static UriComponentsBuilder fromHttpUrl(String httpUrl)
Note: The presence of reserved characters can prevent
correct parsing of the URI string. For example if a query parameter
contains '='
or '&'
characters, the query string cannot
be parsed unambiguously. Such values should be substituted for URI
variables to enable correct parsing:
String urlString = "https://example.com/hotels/42?filter={value}"; UriComponentsBuilder.fromHttpUrl(urlString).buildAndExpand("hot&cold");
httpUrl
- the source URIpublic static UriComponentsBuilder fromHttpRequest(HttpRequest request)
UriComponents
object from the URI associated with
the given HttpRequest while also overlaying with values from the headers
"Forwarded" (RFC 7239),
or "X-Forwarded-Host", "X-Forwarded-Port", and "X-Forwarded-Proto" if
"Forwarded" is not found.request
- the source requestpublic static UriComponentsBuilder fromOriginHeader(String origin)
public final UriComponentsBuilder encode()
In comparison to UriComponents.encode()
, this method has the
same effect on the URI template, i.e. each URI component is encoded by
replacing non-ASCII and illegal (within the URI component type) characters
with escaped octets. However URI variables are encoded more strictly, by
also escaping characters with reserved meaning.
For most cases, this method is more likely to give the expected result
because in treats URI variables as opaque data to be fully encoded, while
UriComponents.encode()
is useful only if intentionally expanding
URI variables that contain reserved characters.
For example ';' is legal in a path but has reserved meaning. This
method replaces ";" with "%3B" in URI variables but not in the URI
template. By contrast, UriComponents.encode()
never replaces ";"
since it is a legal character in a path.
public UriComponentsBuilder encode(Charset charset)
encode()
with a charset other than "UTF-8".charset
- the charset to use for encodingpublic UriComponents build()
UriComponents
instance from the various components contained in this builder.public UriComponents build(boolean encoded)
UriComponents
instance from the various components
contained in this builder.encoded
- whether all the components set in this builder are
encoded (true
) or not (false
)public UriComponents buildAndExpand(Map<String,?> uriVariables)
UriComponents
instance and replaces URI template variables
with the values from a map. This is a shortcut method which combines
calls to build()
and then UriComponents.expand(Map)
.uriVariables
- the map of URI variablespublic UriComponents buildAndExpand(Object... uriVariableValues)
UriComponents
instance and replaces URI template variables
with the values from an array. This is a shortcut method which combines
calls to build()
and then UriComponents.expand(Object...)
.uriVariableValues
- the URI variable valuespublic URI build(Object... uriVariables)
UriBuilder
URI
instance and replaces URI template variables
with the values from an array.build
in interface UriBuilder
uriVariables
- the map of URI variablespublic URI build(Map<String,?> uriVariables)
UriBuilder
URI
instance and replaces URI template variables
with the values from a map.build
in interface UriBuilder
uriVariables
- the map of URI variablespublic String toUriString()
Effectively, a shortcut for building, encoding, and returning the String representation:
String uri = builder.build().encode().toUriString()
However if URI variables
have been provided
then the URI template is pre-encoded separately from URI variables (see
encode()
for details), i.e. equivalent to:
String uri = builder.encode().build().toUriString()
UriComponents.toUriString()
public UriComponentsBuilder uri(URI uri)
uri
- the URIpublic UriComponentsBuilder uriComponents(UriComponents uriComponents)
UriComponents
instance.
For the semantics of each component (i.e. set vs append) check the
builder methods on this class. For example host(String)
sets
while path(String)
appends.
uriComponents
- the UriComponents to copy frompublic UriComponentsBuilder scheme(@Nullable String scheme)
UriBuilder
null
to clear the scheme of this builder.scheme
in interface UriBuilder
scheme
- the URI schemepublic UriComponentsBuilder schemeSpecificPart(String ssp)
query
.ssp
- the URI scheme-specific-part, may contain URI template parameterspublic UriComponentsBuilder userInfo(@Nullable String userInfo)
UriBuilder
null
to clear the user info of this builder.userInfo
in interface UriBuilder
userInfo
- the URI user infopublic UriComponentsBuilder host(@Nullable String host)
UriBuilder
null
to clear the host of this builder.host
in interface UriBuilder
host
- the URI hostpublic UriComponentsBuilder port(int port)
UriBuilder
-1
will clear the port of this builder.port
in interface UriBuilder
port
- the URI portpublic UriComponentsBuilder port(@Nullable String port)
UriBuilder
UriBuilder.port(int)
.
Passing null
will clear the port of this builder.port
in interface UriBuilder
port
- the URI portpublic UriComponentsBuilder path(String path)
UriBuilder
path
in interface UriBuilder
path
- the URI pathpublic UriComponentsBuilder pathSegment(String... pathSegments) throws IllegalArgumentException
UriBuilder
path("/")
subsequently to ensure a trailing slash.pathSegment
in interface UriBuilder
pathSegments
- the URI path segmentsIllegalArgumentException
public UriComponentsBuilder replacePath(@Nullable String path)
UriBuilder
replacePath
in interface UriBuilder
path
- the URI path, or null
for an empty pathpublic UriComponentsBuilder query(@Nullable String query)
UriBuilder
'&'
and their values, if any, with '='
.
The query may contain URI template variables.
Note: please, review the Javadoc of
UriBuilder.queryParam(String, Object...)
for further notes on the treatment
and encoding of individual query parameters.
query
in interface UriBuilder
query
- the query stringpublic UriComponentsBuilder replaceQuery(@Nullable String query)
UriBuilder
UriBuilder.query(String)
.
Note: please, review the Javadoc of
UriBuilder.queryParam(String, Object...)
for further notes on the treatment
and encoding of individual query parameters.
replaceQuery
in interface UriBuilder
query
- the query string; a null
value removes all query parameters.public UriComponentsBuilder queryParam(String name, Object... values)
UriBuilder
"?foo"
instead of "?foo=bar"
.
Note: encoding, if applied, will only encode characters
that are illegal in a query parameter name or value such as "="
or "&"
. All others that are legal as per syntax rules in
RFC 3986 are not
encoded. This includes "+"
which sometimes needs to be encoded
to avoid its interpretation as an encoded space. Stricter encoding may
be applied by using a URI template variable along with stricter encoding
on variable values. For more details please read the
"URI Encoding"
section of the Spring Framework reference.
queryParam
in interface UriBuilder
name
- the query parameter namevalues
- the query parameter valuesUriBuilder.queryParam(String, Collection)
public UriComponentsBuilder queryParam(String name, @Nullable Collection<?> values)
UriBuilder
UriBuilder.queryParam(String, Object...)
with a Collection.
Note: please, review the Javadoc of
UriBuilder.queryParam(String, Object...)
for further notes on the treatment
and encoding of individual query parameters.
queryParam
in interface UriBuilder
name
- the query parameter namevalues
- the query parameter valuesUriBuilder.queryParam(String, Object...)
public UriComponentsBuilder queryParams(@Nullable MultiValueMap<String,String> params)
Note: please, review the Javadoc of
UriBuilder.queryParam(String, Object...)
for further notes on the treatment
and encoding of individual query parameters.
queryParams
in interface UriBuilder
params
- the paramspublic UriComponentsBuilder replaceQueryParam(String name, Object... values)
UriBuilder
Note: please, review the Javadoc of
UriBuilder.queryParam(String, Object...)
for further notes on the treatment
and encoding of individual query parameters.
replaceQueryParam
in interface UriBuilder
name
- the query parameter namevalues
- the query parameter valuesUriBuilder.replaceQueryParam(String, Collection)
public UriComponentsBuilder replaceQueryParam(String name, @Nullable Collection<?> values)
UriBuilder
UriBuilder.replaceQueryParam(String, Object...)
with a Collection.
Note: please, review the Javadoc of
UriBuilder.queryParam(String, Object...)
for further notes on the treatment
and encoding of individual query parameters.
replaceQueryParam
in interface UriBuilder
name
- the query parameter namevalues
- the query parameter valuesUriBuilder.replaceQueryParam(String, Object...)
public UriComponentsBuilder replaceQueryParams(@Nullable MultiValueMap<String,String> params)
Note: please, review the Javadoc of
UriBuilder.queryParam(String, Object...)
for further notes on the treatment
and encoding of individual query parameters.
replaceQueryParams
in interface UriBuilder
params
- the query parameter namepublic UriComponentsBuilder fragment(@Nullable String fragment)
UriBuilder
null
to clear the fragment of this builder.fragment
in interface UriBuilder
fragment
- the URI fragmentpublic UriComponentsBuilder uriVariables(Map<String,Object> uriVariables)
The provided variables may be a subset of all required ones. At build time, the available ones are expanded, while unresolved URI placeholders are left in place and can still be expanded later.
In contrast to UriComponents.expand(Map)
or
buildAndExpand(Map)
, this method is useful when you need to
supply URI variables without building the UriComponents
instance
just yet, or perhaps pre-expand some shared default values such as host
and port.
uriVariables
- the URI variables to usepublic Object clone()
clone()
method.
Delegates to cloneBuilder()
.public UriComponentsBuilder cloneBuilder()
UriComponentsBuilder
.UriComponentsBuilder
object