public abstract class PageableHandlerMethodArgumentResolverSupport extends Object
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
.PageableHandlerMethodArgumentResolver
,
ReactivePageableHandlerMethodArgumentResolver
Constructor and Description |
---|
PageableHandlerMethodArgumentResolverSupport() |
Modifier and Type | Method and Description |
---|---|
protected int |
getMaxPageSize()
Retrieves the maximum page size to be accepted.
|
protected Pageable |
getPageable(MethodParameter methodParameter,
String pageString,
String pageSizeString) |
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.
|
boolean |
isFallbackPageable(Pageable pageable)
Returns whether the given
Pageable is the fallback one. |
protected boolean |
isOneIndexedParameters()
Indicates whether to expose and assume 1-based page number indexes in the request parameters.
|
void |
setFallbackPageable(Pageable fallbackPageable)
Configures the
Pageable to be used as fallback in case no PageableDefault or
PageableDefault (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.
|
public PageableHandlerMethodArgumentResolverSupport()
public void setFallbackPageable(Pageable fallbackPageable)
Pageable
to be used as fallback in case no PageableDefault
or
PageableDefault
(the latter only supported in legacy mode) can be found at the method parameter to be
resolved.
If you set this to Optional#empty(), 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 boolean isFallbackPageable(Pageable pageable)
Pageable
is the fallback one.pageable
- can be null.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 delimiter to be used or null to reset to the default.public void setOneIndexedParameters(boolean oneIndexedParameters)
oneIndexedParameters
- the oneIndexedParameters to setprotected boolean isOneIndexedParameters()
protected Pageable getPageable(MethodParameter methodParameter, @Nullable String pageString, @Nullable String pageSizeString)
protected String getParameterNameToUse(String source, @Nullable 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–2022 Pivotal Software, Inc.. All rights reserved.