Uses of Interface
org.springframework.web.util.UriBuilder
Packages that use UriBuilder Package Description org.springframework.mock.web.reactive.function.server Mock objects for the functional web framework.org.springframework.test.web.reactive.server Support for testing Spring WebFlux server endpoints viaWebTestClient
.org.springframework.web.reactive.function.client Provides a reactiveWebClient
that builds on top of theorg.springframework.http.client.reactive
reactive HTTP adapter layer.org.springframework.web.reactive.function.server Provides the types that make up Spring's functional web framework for Reactive environments.org.springframework.web.reactive.function.server.support Classes supporting theorg.springframework.web.reactive.function.server
package.org.springframework.web.servlet.function Provides the types that make up Spring's functional web framework for Servlet environments.org.springframework.web.servlet.support Support classes for Spring's web MVC framework.org.springframework.web.util Miscellaneous web utility classes, such as HTML escaping, Log4j initialization, and cookie handling.Uses of UriBuilder in org.springframework.mock.web.reactive.function.server
Methods in org.springframework.mock.web.reactive.function.server that return UriBuilder Modifier and Type Method Description UriBuilder
MockServerRequest. uriBuilder()
Uses of UriBuilder in org.springframework.test.web.reactive.server
Method parameters in org.springframework.test.web.reactive.server with type arguments of type UriBuilder Modifier and Type Method Description S
WebTestClient.UriSpec. uri(Function<UriBuilder,URI> uriFunction)
Build the URI for the request with aUriBuilder
obtained through theUriBuilderFactory
configured for this client.Uses of UriBuilder in org.springframework.web.reactive.function.client
Method parameters in org.springframework.web.reactive.function.client with type arguments of type UriBuilder Modifier and Type Method Description S
WebClient.UriSpec. uri(String uri, Function<UriBuilder,URI> uriFunction)
Specify the URI starting with a URI template and finishing off with aUriBuilder
created from the template.S
WebClient.UriSpec. uri(Function<UriBuilder,URI> uriFunction)
Specify the URI by through aUriBuilder
.Uses of UriBuilder in org.springframework.web.reactive.function.server
Methods in org.springframework.web.reactive.function.server that return UriBuilder Modifier and Type Method Description UriBuilder
ServerRequest. uriBuilder()
Get aUriBuilderComponents
from the URI associated with thisServerRequest
.Uses of UriBuilder in org.springframework.web.reactive.function.server.support
Methods in org.springframework.web.reactive.function.server.support that return UriBuilder Modifier and Type Method Description UriBuilder
ServerRequestWrapper. uriBuilder()
Uses of UriBuilder in org.springframework.web.servlet.function
Methods in org.springframework.web.servlet.function that return UriBuilder Modifier and Type Method Description UriBuilder
ServerRequest. uriBuilder()
Get aUriBuilderComponents
from the URI associated with thisServerRequest
.Uses of UriBuilder in org.springframework.web.servlet.support
Classes in org.springframework.web.servlet.support that implement UriBuilder Modifier and Type Class Description class
ServletUriComponentsBuilder
UriComponentsBuilder with additional static factory methods to create links based on the current HttpServletRequest.Uses of UriBuilder in org.springframework.web.util
Classes in org.springframework.web.util that implement UriBuilder Modifier and Type Class Description class
UriComponentsBuilder
Builder forUriComponents
.Methods in org.springframework.web.util that return UriBuilder Modifier and Type Method Description UriBuilder
DefaultUriBuilderFactory. builder()
UriBuilder
UriBuilderFactory. builder()
Create a URI builder with default settings.UriBuilder
UriBuilder. fragment(String fragment)
Set the URI fragment.UriBuilder
UriBuilder. host(String host)
Set the URI host which may contain URI template variables, and may also benull
to clear the host of this builder.UriBuilder
UriBuilder. path(String path)
Append to the path of this builder.UriBuilder
UriBuilder. pathSegment(String... pathSegments)
Append to the path using path segments.UriBuilder
UriBuilder. port(int port)
Set the URI port.UriBuilder
UriBuilder. port(String port)
Set the URI port .UriBuilder
UriBuilder. query(String query)
Parse the given query string into query parameters where parameters are separated with'&'
and their values, if any, with'='
.UriBuilder
UriBuilder. queryParam(String name, Object... values)
Append the given query parameter.UriBuilder
UriBuilder. queryParam(String name, Collection<?> values)
Variant ofqueryParam(String, Object...)
with a Collection.UriBuilder
UriBuilder. queryParams(MultiValueMap<String,String> params)
Add multiple query parameters and values.UriBuilder
UriBuilder. replacePath(String path)
Override the existing path.UriBuilder
UriBuilder. replaceQuery(String query)
Clear existing query parameters and then delegate toquery(String)
.UriBuilder
UriBuilder. replaceQueryParam(String name, Object... values)
Set the query parameter values replacing existing values, or if no values are given, the query parameter is removed.UriBuilder
UriBuilder. replaceQueryParam(String name, Collection<?> values)
Variant ofreplaceQueryParam(String, Object...)
with a Collection.UriBuilder
UriBuilder. replaceQueryParams(MultiValueMap<String,String> params)
Set the query parameter values after removing all existing ones.UriBuilder
UriBuilder. scheme(String scheme)
Set the URI scheme which may contain URI template variables, and may also benull
to clear the scheme of this builder.UriBuilder
DefaultUriBuilderFactory. uriString(String uriTemplate)
UriBuilder
UriBuilderFactory. uriString(String uriTemplate)
Initialize a builder with the given URI template.UriBuilder
UriBuilder. userInfo(String userInfo)
Set the URI user info which may contain URI template variables, and may also benull
to clear the user info of this builder.