缺少spring webclient pageimpl内容字段

wlp8pajw  于 2021-07-26  发布在  Java
关注(0)|答案(1)|浏览(336)

我试着通过网络客户端从另一个微服务中检索一个页面。如果我直接向 Postman 请求这个ms,我会得到“type”以及其他一些信息 content 在页面内部。但是,如果我通过 webClient ,则“type”从 content (还有其他一些领域)。内容是抽象类的列表 account “type”作为jsonsubtypes。
有人能发现错误,为什么是“类型”-属性。消失了?
响应
回应 http://localhost:8080/api/v1/accounts ```
{
"content": [
{
"type": "savingsBook",
"id": 108,
"accountNumber": 99781944,
...
}
], "pageable": {
...
}, "totalPages": ...
...
}

回应 `http://localhost:8081/accounts` ```
{
    "content": [
        {
            "id": 108,
            "accountNumber": 99781944,
            ...
        }
    ], "pageable": {
        ...
    }, "totalPages": ...
    ...
}

代码段:
8080账户控制员

@RequestMapping(method = RequestMethod.GET, produces = "application/json")
public <T extends Account> Page<T> getAccounts(@RequestParam(value = "page", required = false) Integer page, @RequestParam(value = "pageSize", required = false) Integer pageSize, @RequestParam(value = "sortBy", required = false) String sortBy) {
    if (page == null) {
        page = 0;
    }
    if (pageSize == null) {
        pageSize = 10;
    }
    if (sortBy == null) {
        Page<T> p = accountService.getAccounts(page, pageSize);
        return new PageImpl<T>(p.getContent(), p.getPageable(), p.getTotalElements()) {};

    } else {
        Sort sort = Sort.by(sortBy);
        Page<T> p = accountService.getAccounts(page, pageSize, sort);
        return new PageImpl<T>(p.getContent(), p.getPageable(), p.getTotalElements()) {};
    }
}

8081帐户控制器

@GetMapping
public  <T extends Account> Page<T> getAllAccounts(@RequestParam(value = "page", required = false) Integer page, 
                                                   @RequestParam(value = "pageSize", required = false) Integer pageSize,
                                                   @RequestParam(value = "sortBy", required = false) String sortBy) {   
     if (page == null) {
         page = 0;
     }
     if (pageSize == null) {
         pageSize = 10;
     }
     if (sortBy == null) {
         return accountService.getAllAccounts(page, pageSize);
     } else {
         return accountService.getAllAccounts(page, pageSize, sortBy);
     }
}

8081账户服务

public <T extends Account> Page<T> getAllAccounts(Integer pageNumber, Integer pageSize) {
    ParameterizedTypeReference<CustomPageImpl<T>> typeReference = new ParameterizedTypeReference<CustomPageImpl<T>>(){};
    System.out.println("Anfrage an: " + addr + "/accounts/");
    System.out.println(client.get().uri("/accounts/").retrieve().bodyToMono(typeReference).block().getContent());
    Page<T> prodData = (CustomPageImpl<T>)(client.get().uri("/accounts/").retrieve().bodyToMono(typeReference).block());
    return prodData;
}

custompageimpl(从另一个stackoverflow post获得)

public class CustomPageImpl<T> extends PageImpl<T> {
    private static final long serialVersionUID = 1L;

    @JsonCreator(mode = JsonCreator.Mode.PROPERTIES)
    public CustomPageImpl(@JsonProperty("content") List<T> content,
            @JsonProperty("number") int number,
            @JsonProperty("size") int size,
            @JsonProperty("totalElements") Long totalElements,
            @JsonProperty("pageable") JsonNode pageable,
            @JsonProperty("last") boolean last,
            @JsonProperty("totalPages") int totalPages,
            @JsonProperty("sort") JsonNode sort,
            @JsonProperty("first") boolean first,
            @JsonProperty("numberOfElements") int numberOfElements){
        super(content, PageRequest.of(number, size) , totalElements);
    }
    public CustomPageImpl(List<T> content, Pageable pageable, long total) {
        super(content, pageable, total);
    }

    public CustomPageImpl(List<T> content) {
        super(content);
    }

    public CustomPageImpl() {
        super(new ArrayList<>());
    }
}
qgzx9mmu

qgzx9mmu1#

我自己找到了这个问题的答案。
问题是,这个帐户是抽象的,并且有json子类型。通过替换 public class CustomPageImpl<T> extends PageImpl<T>public class CustomPageImpl<T extends Account> extends PageImpl<T> 我能解决这个问题。现在我收到的类型按计划。

相关问题