public class PageableHandlerMethodArgumentResolver extends Object implements HandlerMethodArgumentResolver
Pageable
instances into controller
methods. Request properties to be parsed can be configured. Default configuration uses request parameters beginning
with DEFAULT_PAGE_PARAMETER
DEFAULT_QUALIFIER_DELIMITER
.Modifier and Type | Field and Description |
---|---|
static PageableHandlerMethodArgumentResolver |
LEGACY
Deprecated.
|
Constructor and Description |
---|
PageableHandlerMethodArgumentResolver()
Constructs an instance of this resolved with a default
SortHandlerMethodArgumentResolver . |
PageableHandlerMethodArgumentResolver(SortHandlerMethodArgumentResolver sortResolver)
Constructs an instance of this resolver with the specified
SortHandlerMethodArgumentResolver . |
Modifier and Type | Method and Description |
---|---|
protected int |
getMaxPageSize()
Retrieves the maximum page size to be accepted.
|
protected String |
getPageParameterName()
Retrieves the parameter name to be used to find the page number in the request.
|
protected String |
getParameterNameToUse(String source,
MethodParameter parameter)
Returns the name of the request parameter to find the
Pageable information in. |
protected String |
getSizeParameterName()
Retrieves the parameter name to be used to find the page size in the request.
|
protected boolean |
isOneIndexedParameters()
Indicates whether to expose and assume 1-based page number indexes in the request parameters.
|
Pageable |
resolveArgument(MethodParameter methodParameter,
ModelAndViewContainer mavContainer,
NativeWebRequest webRequest,
WebDataBinderFactory binderFactory) |
void |
setFallbackPageable(Pageable fallbackPageable)
Configures the
Pageable to be used as fallback in case no PageableDefault or
PageableDefaults (the latter only supported in legacy mode) can be found at the method parameter to be
resolved. |
void |
setMaxPageSize(int maxPageSize)
Configures the maximum page size to be accepted.
|
void |
setOneIndexedParameters(boolean oneIndexedParameters)
Configures whether to expose and assume 1-based page number indexes in the request parameters.
|
void |
setPageParameterName(String pageParameterName)
Configures the parameter name to be used to find the page number in the request.
|
void |
setPrefix(String prefix)
Configures a general prefix to be prepended to the page number and page size parameters.
|
void |
setQualifierDelimiter(String qualifierDelimiter)
The delimiter to be used between the qualifier and the actual page number and size properties.
|
void |
setSizeParameterName(String sizeParameterName)
Configures the parameter name to be used to find the page size in the request.
|
boolean |
supportsParameter(MethodParameter parameter) |
@Deprecated public static final PageableHandlerMethodArgumentResolver LEGACY
PageableHandlerMethodArgumentResolver
preconfigured to the setup of PageableArgumentResolver
. Use
that if you need to stick to the former request parameters an 1-indexed behavior. This will be removed in the next
major version (1.7). So consider migrating to the new way of exposing request parameters.public PageableHandlerMethodArgumentResolver()
SortHandlerMethodArgumentResolver
.public PageableHandlerMethodArgumentResolver(SortHandlerMethodArgumentResolver sortResolver)
SortHandlerMethodArgumentResolver
.sortResolver
- The sort resolver to usepublic void setFallbackPageable(Pageable fallbackPageable)
Pageable
to be used as fallback in case no PageableDefault
or
PageableDefaults
(the latter only supported in legacy mode) can be found at the method parameter to be
resolved.
If you set this to null, be aware that you controller methods will get null handed into them
in case no Pageable
data can be found in the request. Note, that doing so will require you supply bot the
page and the size parameter with the requests as there will be no default for any of the parameters
available.
fallbackPageable
- the Pageable
to be used as general fallback.public void setMaxPageSize(int maxPageSize)
OutOfMemoryError
. Defaults to DEFAULT_MAX_PAGE_SIZE
.maxPageSize
- the maxPageSize to setprotected int getMaxPageSize()
OutOfMemoryError
. Defaults to DEFAULT_MAX_PAGE_SIZE
.public void setPageParameterName(String pageParameterName)
page
.pageParameterName
- the parameter name to be used, must not be null or empty.protected String getPageParameterName()
page
.public void setSizeParameterName(String sizeParameterName)
size
.sizeParameterName
- the parameter name to be used, must not be null or empty.protected String getSizeParameterName()
size
.public void setPrefix(String prefix)
prefix
- the prefix to be used or null to reset to the default.public void setQualifierDelimiter(String qualifierDelimiter)
_
. So a qualifier of foo
will result in a page number parameter of foo_page
.qualifierDelimiter
- the delimter to be used or null to reset to the default.public void setOneIndexedParameters(boolean oneIndexedParameters)
oneIndexedParameters
- the oneIndexedParameters to setprotected boolean isOneIndexedParameters()
public boolean supportsParameter(MethodParameter parameter)
supportsParameter
in interface HandlerMethodArgumentResolver
public Pageable resolveArgument(MethodParameter methodParameter, ModelAndViewContainer mavContainer, NativeWebRequest webRequest, WebDataBinderFactory binderFactory)
resolveArgument
in interface HandlerMethodArgumentResolver
protected String getParameterNameToUse(String source, MethodParameter parameter)
Pageable
information in. Inspects the given
MethodParameter
for Qualifier
present and prefixes the given source parameter name with it.source
- the basic parameter name.parameter
- the MethodParameter
potentially qualified.Copyright © 2011-2014-2014 Pivotal. All Rights Reserved.