Package | Description |
---|---|
org.springframework.web.servlet.handler |
Provides standard HandlerMapping implementations,
including abstract base classes for custom implementations.
|
org.springframework.web.servlet.mvc |
Standard controller implementations for the Servlet MVC framework that comes with
Spring.
|
org.springframework.web.servlet.mvc.annotation |
Support package for annotation-based Servlet MVC controllers.
|
org.springframework.web.servlet.mvc.condition |
Common MVC logic for matching incoming requests based on conditions.
|
org.springframework.web.servlet.mvc.method.annotation |
MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation package. |
org.springframework.web.servlet.mvc.multiaction |
Package allowing MVC Controller implementations to handle requests
at method rather than class level.
|
org.springframework.web.servlet.support |
Support classes for Spring's web MVC framework.
|
org.springframework.web.servlet.view |
Provides standard View and ViewResolver implementations,
including abstract base classes for custom implementations.
|
Modifier and Type | Method and Description |
---|---|
UrlPathHelper |
AbstractHandlerMapping.getUrlPathHelper()
Return the UrlPathHelper implementation to use for resolution of lookup paths.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractHandlerMapping.setUrlPathHelper(UrlPathHelper urlPathHelper)
Set the UrlPathHelper to use for resolution of lookup paths.
|
Modifier and Type | Method and Description |
---|---|
protected UrlPathHelper |
AbstractUrlViewController.getUrlPathHelper()
Return the UrlPathHelper to use for the resolution of lookup paths.
|
Modifier and Type | Method and Description |
---|---|
void |
WebContentInterceptor.setUrlPathHelper(UrlPathHelper urlPathHelper)
Set the UrlPathHelper to use for resolution of lookup paths.
|
void |
AbstractUrlViewController.setUrlPathHelper(UrlPathHelper urlPathHelper)
Set the UrlPathHelper to use for the resolution of lookup paths.
|
Modifier and Type | Method and Description |
---|---|
void |
AnnotationMethodHandlerAdapter.setUrlPathHelper(UrlPathHelper urlPathHelper)
Deprecated.
Set the UrlPathHelper to use for resolution of lookup paths.
|
Constructor and Description |
---|
PatternsRequestCondition(String[] patterns,
UrlPathHelper urlPathHelper,
PathMatcher pathMatcher,
boolean useSuffixPatternMatch,
boolean useTrailingSlashMatch)
Additional constructor with flags for using suffix pattern (.*) and
trailing slash matches.
|
PatternsRequestCondition(String[] patterns,
UrlPathHelper urlPathHelper,
PathMatcher pathMatcher,
boolean useSuffixPatternMatch,
boolean useTrailingSlashMatch,
List<String> fileExtensions)
Creates a new instance with the given URL patterns.
|
Modifier and Type | Method and Description |
---|---|
void |
ServletCookieValueMethodArgumentResolver.setUrlPathHelper(UrlPathHelper urlPathHelper) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractUrlMethodNameResolver.setUrlPathHelper(UrlPathHelper urlPathHelper)
Set the UrlPathHelper to use for resolution of lookup paths.
|
Modifier and Type | Method and Description |
---|---|
UrlPathHelper |
AbstractFlashMapManager.getUrlPathHelper()
Return the UrlPathHelper implementation to use.
|
UrlPathHelper |
RequestContext.getUrlPathHelper()
Return the UrlPathHelper used for context path and request URI decoding.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractFlashMapManager.setUrlPathHelper(UrlPathHelper urlPathHelper)
Set the UrlPathHelper to use to match FlashMap instances to requests.
|
void |
RequestContext.setUrlPathHelper(UrlPathHelper urlPathHelper)
Set the UrlPathHelper to use for context path and request URI decoding.
|
Modifier and Type | Method and Description |
---|---|
void |
DefaultRequestToViewNameTranslator.setUrlPathHelper(UrlPathHelper urlPathHelper)
Set the
UrlPathHelper to use for
the resolution of lookup paths. |
Copyright © 2015. All rights reserved.