Skip to content

Add statement about of Pageable to documentation #26

Open
@terribleherbst

Description

@terribleherbst

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

No one assigned

    Labels

    Feature RequestFeature request.SpringRelates to the SpringConverter

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions