Spring Boot Page Deserialization – PageImpl No constructor
Found the answer in the different post on here. It was not the accepted answer which it should be Spring RestTemplate with paginated API the answer by @rvheddeg is correct. You just need to put @JsonCreator and provide a constructor with all the properties, here is my RestResponsePage class that fixes the issue. class RestResponsePage<T> … Read more