Class DefaultUriBuilderFactory
- All Implemented Interfaces:
 UriBuilderFactory,UriTemplateHandler
UriBuilderFactory that relies on UriComponentsBuilder for
 the actual building of the URI.
 Provides options to create UriBuilder instances with a common
 base URI, alternative encoding mode strategies, among others.
- Since:
 - 5.0
 - Author:
 - Rossen Stoyanchev
 - See Also:
 
- 
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumEnum to represent multiple URI encoding strategies. - 
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor without a base URI.DefaultUriBuilderFactory(String baseUriTemplate) Constructor with a base URI.Variant ofDefaultUriBuilderFactory(String)with aUriComponentsBuilder. - 
Method Summary
Modifier and TypeMethodDescriptionbuilder()Create a URI builder with default settings.Expand the given URI template with an array of URI variables.Expand the given URI template with a map of URI variables.Return the configured default URI variable values.Return the configured encoding mode.Return the configured parser type.final booleanDetermine whether this factory has been configured with a base URI.voidsetDefaultUriVariables(Map<String, ?> defaultUriVariables) Provide default URI variable values to use when expanding URI templates with a Map of variables.voidsetEncodingMode(DefaultUriBuilderFactory.EncodingMode encodingMode) Set theencoding modeto use.voidsetParsePath(boolean parsePath) Whether to parse the input path into path segments if the encoding mode is set toEncodingMode.URI_COMPONENT, which ensures that URI variables in the path are encoded according to path segment rules and for example a '/' is encoded.voidsetParserType(UriComponentsBuilder.ParserType parserType) Set theUriComponentsBuilder.ParserTypeto use.booleanWhether to parse the path into path segments if the encoding mode is set toEncodingMode.URI_COMPONENT.Initialize a builder with the given URI template. 
- 
Constructor Details
- 
DefaultUriBuilderFactory
public DefaultUriBuilderFactory()Default constructor without a base URI.The target address must be specified on each UriBuilder.
 - 
DefaultUriBuilderFactory
Constructor with a base URI.The given URI template is parsed via
UriComponentsBuilder.fromUriString(java.lang.String)and then applied as a base URI to every UriBuilder viaUriComponentsBuilder.uriComponents(org.springframework.web.util.UriComponents)unless the UriBuilder itself was created with a URI template that already has a target address.- Parameters:
 baseUriTemplate- the URI template to use a base URL
 - 
DefaultUriBuilderFactory
Variant ofDefaultUriBuilderFactory(String)with aUriComponentsBuilder. 
 - 
 - 
Method Details
- 
hasBaseUri
public final boolean hasBaseUri()Determine whether this factory has been configured with a base URI.- Since:
 - 6.1.4
 - See Also:
 
 - 
setParserType
Set theUriComponentsBuilder.ParserTypeto use.By default,
UriComponentsBuilderuses theparser type.- Parameters:
 parserType- the parser type- Since:
 - 6.2
 - See Also:
 
 - 
getParserType
Return the configured parser type.- Since:
 - 6.2
 
 - 
setEncodingMode
Set theencoding modeto use.By default this is set to
EncodingMode.TEMPLATE_AND_VALUES.Note: Prior to 5.1 the default was
EncodingMode.URI_COMPONENTtherefore theWebClientRestTemplatehave switched their default behavior.- Parameters:
 encodingMode- the encoding mode to use
 - 
getEncodingMode
Return the configured encoding mode. - 
setDefaultUriVariables
Provide default URI variable values to use when expanding URI templates with a Map of variables.- Parameters:
 defaultUriVariables- default URI variable values
 - 
getDefaultUriVariables
Return the configured default URI variable values. - 
setParsePath
public void setParsePath(boolean parsePath) Whether to parse the input path into path segments if the encoding mode is set toEncodingMode.URI_COMPONENT, which ensures that URI variables in the path are encoded according to path segment rules and for example a '/' is encoded.By default this is set to
true.- Parameters:
 parsePath- whether to parse the path into path segments
 - 
shouldParsePath
public boolean shouldParsePath()Whether to parse the path into path segments if the encoding mode is set toEncodingMode.URI_COMPONENT. - 
expand
Description copied from interface:UriTemplateHandlerExpand the given URI template with a map of URI variables.- Specified by:
 expandin interfaceUriTemplateHandler- Parameters:
 uriTemplate- the URI templateuriVars- variable values- Returns:
 - the created URI instance
 
 - 
expand
Description copied from interface:UriTemplateHandlerExpand the given URI template with an array of URI variables.- Specified by:
 expandin interfaceUriTemplateHandler- Parameters:
 uriTemplate- the URI templateuriVars- variable values- Returns:
 - the created URI instance
 
 - 
uriString
Description copied from interface:UriBuilderFactoryInitialize a builder with the given URI template.- Specified by:
 uriStringin interfaceUriBuilderFactory- Parameters:
 uriTemplate- the URI template to use- Returns:
 - the builder instance
 
 - 
builder
Description copied from interface:UriBuilderFactoryCreate a URI builder with default settings.- Specified by:
 builderin interfaceUriBuilderFactory- Returns:
 - the builder instance
 
 
 -