Open
Description
It would be great if http interface clients had support for:
- Page as a response type
- Pageable / Sort as request parameters
interface FooClient {
@GetExchange("/foos")
public fun getFoos(
pageRequest: Pageable,
): Page<Foo>
}
This would bring feature parity for what is supported in controllers today. I believe spring openfeign clients support this as well
Original: spring-projects/spring-framework#32286