Class RequestMappingInfo.BuilderConfiguration
java.lang.Object
org.springframework.web.servlet.mvc.method.RequestMappingInfo.BuilderConfiguration
- Enclosing class:
RequestMappingInfo
Container for configuration options used for request mapping purposes.
such configuration is required to create RequestMappingInfo instances but
is typically used across all RequestMappingInfo instances.
- since:
- 4.2
- Author:
- Arjen Poutsma, Rossen stoyanchev
- see Also:
-
Constructor summary
Constructors -
Method summary
Modifier and TypeMethodDescriptionReturn the configured strategy for API versioning.Return the ContentNegotiationManager to use for the ProducesRequestCondition, if any.Deprecated, for removal: This API element is subject to removal in a future version.Return thePathPatternParserto use, the one set explicitly or falling back on a default instance if bothPathPatternParserandPathMatcherare not set.Deprecated.the path is resolved externally and obtained withservletRequestPathUtils.getCachedPathValue(servletRequest); this method always returnsUrlPathHelper.defaultInstance.voidsetApiVersionstrategy(@Nullable ApiVersionstrategy apiVersionstrategy) set the strategy for API versioning.voidsetContentNegotiationManager(ContentNegotiationManager contentNegotiationManager) set the ContentNegotiationManager to use for the ProducesRequestCondition.voidsetPathMatcher(@Nullable PathMatcher pathMatcher) Deprecated, for removal: This API element is subject to removal in a future version.use ofPathMatcherandUrlPathHelperis deprecated for use at runtime in web modules in favor of parsed patterns withPathPatternParser.voidsetPatternParser(@Nullable PathPatternParser patternParser) Enable use of parsedPathPatterns as described inAbstractHandlerMapping.setPatternParser(PathPatternParser).voidsetUrlPathHelper(@Nullable UrlPathHelper urlPathHelper) Deprecated.the path is resolved externally and obtained withservletRequestPathUtils.getCachedPathValue(servletRequest)
-
Constructor Details
-
BuilderConfiguration
public BuilderConfiguration()
-
-
Method Details
-
setPatternParser
Enable use of parsedPathPatterns as described inAbstractHandlerMapping.setPatternParser(PathPatternParser).Note: This property is mutually exclusive with
setPathMatcher(PathMatcher).By default, this is not set, but
RequestMappingInfo.Builderdefaults to usingPathPatternParserunlesssetPathMatcher(PathMatcher)is explicitly set.- since:
- 5.3
-
getPatternParser
- since:
- 5.3
-
setUrlPathHelper
@Deprecated(since="5.3") public void setUrlPathHelper(@Nullable UrlPathHelper urlPathHelper) Deprecated.the path is resolved externally and obtained withservletRequestPathUtils.getCachedPathValue(servletRequest)set a custom UrlPathHelper to use for the PatternsRequestCondition.By default this is not set.
- since:
- 4.2.8
-
getUrlPathHelper
Deprecated.the path is resolved externally and obtained withservletRequestPathUtils.getCachedPathValue(servletRequest); this method always returnsUrlPathHelper.defaultInstance.Return the configured UrlPathHelper. -
setPathMatcher
@Deprecated(since="7.0", forRemoval=true) public void setPathMatcher(@Nullable PathMatcher pathMatcher) Deprecated, for removal: This API element is subject to removal in a future version.use ofPathMatcherandUrlPathHelperis deprecated for use at runtime in web modules in favor of parsed patterns withPathPatternParser.set a custom PathMatcher to use for the PatternsRequestCondition.By default, this is not set. You must set it explicitly if you want
PathMatcherto be used, or otherwiseRequestMappingInfodefaults to usingPathPatternParser. -
getPathMatcher
Deprecated, for removal: This API element is subject to removal in a future version.use ofPathMatcherandUrlPathHelperis deprecated for use at runtime in web modules in favor of parsed patterns withPathPatternParser.Return a custom PathMatcher to use for the PatternsRequestCondition, if any. -
getPatternParserToUse
Return thePathPatternParserto use, the one set explicitly or falling back on a default instance if bothPathPatternParserandPathMatcherare not set.- since:
- 6.1.2
-
setContentNegotiationManager
public void setContentNegotiationManager(ContentNegotiationManager contentNegotiationManager) set the ContentNegotiationManager to use for the ProducesRequestCondition.By default, this is not set.
-
getContentNegotiationManager
Return the ContentNegotiationManager to use for the ProducesRequestCondition, if any. -
setApiVersionstrategy
set the strategy for API versioning.- Parameters:
apiVersionstrategy- the strategy to use- since:
- 7.0
-
getApiVersionstrategy
Return the configured strategy for API versioning.- since:
- 7.0
-
PathMatcherandUrlPathHelperis deprecated for use at runtime in web modules in favor of parsed patterns withPathPatternParser.