``` @GetMapping fun getIdentities(payload:...
# spring
f
Copy code
@GetMapping
    fun getIdentities(payload: IdentitySearchRequest, pageable: Pageable) =
        service.searchProcess(payload, pageable)
I`m trying to map the query string of this request to that class. But it doesn`t work. Any idea? Its spring boot
d
Can you provide an example of your HTTP call? You might be missing some annotations for your method parameters (e.g. @RequestBody or @RequestParam)