-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
Feature RequestFeature request.Feature request.SpringRelates to the SpringConverterRelates to the SpringConverter
Description
Setup information
hikaku version: 2.0.0-SNAPSHOT
implementation converter: SpringConverter
Describe the bug
Spring data supports the idea of Pageable. A pageable is an object build by request parameter, supporting page, size and sort (parameter names are changeable). These parameters might be part of an api, but are not explizit mapped to query parameter. The documentation says "Query Parameter based on an object" are not supported, but I think a Pageable should be mentioned explizitly.
Expected behavior
Add support for Pageable or add a note that Pageable are currently not supported in hikaku.
Code samples:
Can you provide specifications or code snippets?
public ResponseEntity<Person> getPersons(
@RequestParam(name = "language", required = false) String language,
@PageableDefault Pageable pageable) {
...
}
Metadata
Metadata
Assignees
Labels
Feature RequestFeature request.Feature request.SpringRelates to the SpringConverterRelates to the SpringConverter