我想使用分页的API。该API由使用SpringBoot创建的端点提供。在寻找解决方案时,我在StackOverflow上发现了this个帖子。
几乎每个答案都建议创建一个POJO进行解析。但是,由于这是一个标准问题,因此应该有一个框架支持的标准解决方案。在提到的帖子中,Vladimir Mitev给出了答案。他建议使用ParameterizedTypeReference<PagedResources<T>>
。我took了他的嘴,并出于目的更改了T
类型:
restTemplate.exchange(targetUrl, HttpMethod.GET, requestEntity, new ParameterizedTypeReference<PagedResources<String>>() {});
这有助于获取Page的内容。但是这里的问题是,提供的元数据一直为空。因此,由于我没有获得有关totalPages
的信息,因此无法遍历页面。我是否正确定义ResponseType?调试导致我发现PagedResources的默认构造函数已被调用,因此PageMetadata
对象从未设置。
在下面,我描述了如何解决该问题。也许会帮助面临同样问题的其他人
使用分页API的天真的方法是:
restTemplate.exchange(targetUrl, HttpMethod.GET, requestEntity, String.class);
这使我们对基础数据结构有了一个大概的想法。
<200,
{
"content":[
"Data1",
"Data2",
"Data3"
],
"pageable":{
"sort":{
"sorted":false,
"unsorted":true,
"empty":true
},
"offset":0,
"pageSize":20,
"pageNumber":0,
"paged":true,
"unpaged":false
},
"number":0,
"sort":{
"sorted":false,
"unsorted":true,
"empty":true
},
"size":20,
"first":true,
"numberOfElements":20,
"totalPages":5,
"totalElements":90,
"last":false,
"empty":false
},
[
Cache-Control:"no-cache, no-store, max-age=0, must
-revalidate",
Content-Type:"application/json;charset=UTF-8",
Date:"Thu, 20 Jun 2019 17:38:18 GMT",
Expires:"0",
Pragma:"no-cache",
Server:"nginx/1.15.10",
X-Content-Type-Options:"nosniff"
它看起来像一个标准的弹簧pa回响应对象。因此,应该有一种方法可以将该响应直接转换为某种预定义的对象。
因此,我尝试更改ResponseType参数:
Page.class
导致
org.springframework.http.converter.HttpMessageConversionException: Type definition error: [simple type, class org.springframework.data.domain.Page]; nested exception is com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Cannot construct instance of org.springframework.data.domain.Page (no Creators, like default construct, exist): abstract types either need to be mapped to concrete types, have custom deserializer, or contain additional type information
和PageImpl.class
导致
org.springframework.http.converter.HttpMessageConversionException: Type definition error: [simple type, class org.springframework.data.domain.PageImpl]; nested exception is com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Cannot construct instance of org.springframework.data.domain.PageImpl (no Creators, like default construct, exist): cannot deserialize from Object value (no delegate- or property-based Creator)
因此必须有另一个ResponseType才能将响应解析为。