Class RequestMappingInfo.BuilderConfiguration
- java.lang.Object
- org.springframework.web.servlet.mvc.method.RequestMappingInfo.BuilderConfiguration
- Enclosing class:
- RequestMappingInfo
public static class RequestMappingInfo.BuilderConfiguration extends Object
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.
Constructor Summary
Constructors Constructor Description BuilderConfiguration()
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description ContentNegotiationManagergetContentNegotiationManager()Return the ContentNegotiationManager to use for the ProducesRequestCondition, if any.List<String>getFileExtensions()Deprecated.as of 5.2.4.PathMatchergetPathMatcher()Return a custom PathMatcher to use for the PatternsRequestCondition, if any.UrlPathHelpergetUrlPathHelper()Return a custom UrlPathHelper to use for the PatternsRequestCondition, if any.voidsetContentNegotiationManager(ContentNegotiationManager contentNegotiationManager)Set the ContentNegotiationManager to use for the ProducesRequestCondition.voidsetPathMatcher(PathMatcher pathMatcher)Set a custom PathMatcher to use for the PatternsRequestCondition.voidsetRegisteredSuffixPatternMatch(boolean registeredSuffixPatternMatch)Deprecated.as of 5.2.4.voidsetSuffixPatternMatch(boolean suffixPatternMatch)Deprecated.as of 5.2.4.voidsetTrailingSlashMatch(boolean trailingSlashMatch)Set whether to apply trailing slash matching in PatternsRequestCondition.voidsetUrlPathHelper(UrlPathHelper urlPathHelper)Set a custom UrlPathHelper to use for the PatternsRequestCondition.booleanuseRegisteredSuffixPatternMatch()Deprecated.as of 5.2.4.booleanuseSuffixPatternMatch()Deprecated.as of 5.2.4.booleanuseTrailingSlashMatch()Return whether to apply trailing slash matching in PatternsRequestCondition.
Constructor Detail
BuilderConfiguration
public BuilderConfiguration()
Method Detail
setUrlPathHelper
public void setUrlPathHelper(@Nullable UrlPathHelper urlPathHelper)
Set a custom UrlPathHelper to use for the PatternsRequestCondition.By default this is not set.
- Since:
- 4.2.8
getUrlPathHelper
@Nullable public UrlPathHelper getUrlPathHelper()
Return a custom UrlPathHelper to use for the PatternsRequestCondition, if any.
setPathMatcher
public void setPathMatcher(@Nullable PathMatcher pathMatcher)
Set a custom PathMatcher to use for the PatternsRequestCondition.By default this is not set.
getPathMatcher
@Nullable public PathMatcher getPathMatcher()
Return a custom PathMatcher to use for the PatternsRequestCondition, if any.
setTrailingSlashMatch
public void setTrailingSlashMatch(boolean trailingSlashMatch)
Set whether to apply trailing slash matching in PatternsRequestCondition.By default this is set to 'true'.
useTrailingSlashMatch
public boolean useTrailingSlashMatch()
Return whether to apply trailing slash matching in PatternsRequestCondition.
setSuffixPatternMatch
@Deprecated public void setSuffixPatternMatch(boolean suffixPatternMatch)
Deprecated.as of 5.2.4. See class-level note inRequestMappingHandlerMappingon the deprecation of path extension config options.Set whether to apply suffix pattern matching in PatternsRequestCondition.By default this is set to 'true'.
useSuffixPatternMatch
@Deprecated public boolean useSuffixPatternMatch()
Deprecated.as of 5.2.4. See class-level note inRequestMappingHandlerMappingon the deprecation of path extension config options.Return whether to apply suffix pattern matching in PatternsRequestCondition.
setRegisteredSuffixPatternMatch
@Deprecated public void setRegisteredSuffixPatternMatch(boolean registeredSuffixPatternMatch)
Deprecated.as of 5.2.4. See class-level note inRequestMappingHandlerMappingon the deprecation of path extension config options; note also that in 5.3 the default for this property switches fromfalsetotrue.Set whether suffix pattern matching should be restricted to registered file extensions only. Setting this property also setssuffixPatternMatch=trueand requires that asetContentNegotiationManager(org.springframework.web.accept.ContentNegotiationManager)is also configured in order to obtain the registered file extensions.
useRegisteredSuffixPatternMatch
@Deprecated public boolean useRegisteredSuffixPatternMatch()
Deprecated.as of 5.2.4. See class-level note inRequestMappingHandlerMappingon the deprecation of path extension config options.Return whether suffix pattern matching should be restricted to registered file extensions only.
getFileExtensions
@Nullable @Deprecated public List<String> getFileExtensions()
Deprecated.as of 5.2.4. See class-level note inRequestMappingHandlerMappingon the deprecation of path extension config options.Return the file extensions to use for suffix pattern matching. IfregisteredSuffixPatternMatch=true, the extensions are obtained from the configuredcontentNegotiationManager.
setContentNegotiationManager
public void setContentNegotiationManager(ContentNegotiationManager contentNegotiationManager)
Set the ContentNegotiationManager to use for the ProducesRequestCondition.By default this is not set.
getContentNegotiationManager
@Nullable public ContentNegotiationManager getContentNegotiationManager()
Return the ContentNegotiationManager to use for the ProducesRequestCondition, if any.